Как вызвать статический метод статического универсального класса с C # Reflection? - PullRequest
0 голосов
/ 21 мая 2018

У меня есть много классов с этими реализациями:

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);
}

Я хотел бы вызвать метод Create () статического класса WindowsServiceConfiguration путем отражения, как показано ниже:

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

, и я надеваюНе знаете, как это сделать, используя Activator или что-то подобное для вызова метода Create в моем коде C #?

С наилучшими пожеланиями.

1 Ответ

0 голосов
/ 21 мая 2018

Как-то так должно работать:

// 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]);
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...