Ich schrieb die Erweiterungsmethode GenericExtension
. Jetzt möchte ich die Erweiterungsmethode Extension
aufrufen. Aber der Wert methodInfo
ist immer Null.So rufen Sie eine generische Erweiterungsmethode mit Reflektion auf?
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));
}
}
Was ist los?
Siehe http://stackoverflow.com/questions/5959219/how to-use-reflection-to-get-extension-method-on-generic-type? rq = 1 für weitere Informationen dazu. – skarmats