我编写了扩展方法GenericExtension。现在我想调用扩展方法Extension。但是methodInfo的值始终为空。

public static class MyClass
{
    public static void GenericExtension<T>(this Form a, string b) where T : Form
    {
        // code...
    }

    public static void Extension(this Form a, string b, Type c)
    {
        MethodInfo methodInfo = typeof(Form).GetMethod("GenericExtension", new[] { typeof(string) });
        MethodInfo methodInfoGeneric = methodInfo.MakeGenericMethod(new[] { c });
        methodInfoGeneric.Invoke(a, new object[] { a, b });
    }

    private static void Main(string[] args)
    {
        new Form().Extension("", typeof (int));
    }
}

怎么了?

最佳答案

扩展方法没有附加到类型Form,而是附加到类型MyClass,因此将其从该类型中获取:

MethodInfo methodInfo = typeof(MyClass).GetMethod("GenericExtension",
    new[] { typeof(Form), typeof(string) });

关于c# - 如何使用反射调用泛型扩展方法?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15927028/

10-10 18:18