简体   繁体   中英

How to call static method of static generic class with C# Reflection?

I have many classes with these implementations:

internal static class WindowsServiceConfiguration<T, Y> where T : WindowsServiceJobContainer<Y>, new() where Y : IJob, new()
{
    internal static void Create()
    {            
    }
}

public class WindowsServiceJobContainer<T> : IWindowsService where T : IJob, new()
{
    private T Job { get; } = new T();
    private IJobExecutionContext ExecutionContext { get; }

    public void Start()
    {

    }

    public void Install()
    {

    }

    public void Pause()
    {

    }

    public void Resume()
    {

    }

    public void Stop()
    {

    }

    public void UnInstall()
    {

    }
}

public interface IWindowsService
{
    void Start();
    void Stop();
    void Install();
    void UnInstall();
    void Pause();
    void Resume();
}

public class SyncMarketCommisionsJob : IJob
{                
    public void Execute(IJobExecutionContext context)
    {            
    }
}

public interface IJob
{     
    void Execute(IJobExecutionContext context);
}

I would like to call Create() method of WindowsServiceConfiguration static class by reflection as below:

WindowsServiceConfiguration<WindowsServiceJobContainer<SyncMarketCommisionsJob>, SyncMarketCommisionsJob>.Create();

and I don't know how to do that by using Activator or something like that in order to call Create method in my C# code?

best regards.

Something like this ought to work:

// Get the type info for the open type
Type openGeneric = typeof(WindowsServiceConfiguration<,>);
// Make a type for a specific value of T
Type closedGeneric = openGeneric.MakeGenericType(typeof(WindowsServiceJobContainer<SyncMarketCommisionsJob>), typeof(SyncMarketCommisionsJob));
// Find the desired method
MethodInfo method = closedGeneric.GetMethod("Create", BindingFlags.Static | BindingFlags.NonPublic | BindingFlags.InvokeMethod);
// Invoke the static method
method.Invoke(null, new object[0]);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM