คุณควรจะทำได้โดยใช้การสะท้อนตามที่อธิบายไว้ที่นี่
เนื่องจากลิงก์ถูกปิดฉันพบรายละเอียดที่เกี่ยวข้องในเครื่องย้อนกลับ:
สมมติว่าคุณมีคลาสที่มีวิธีการทั่วไปแบบคงที่:
class ClassWithGenericStaticMethod
{
public static void PrintName<T>(string prefix) where T : class
{
Console.WriteLine(prefix + " " + typeof(T).FullName);
}
}
คุณจะเรียกใช้วิธีนี้โดยใช้การเลือกใหม่ได้อย่างไร?
มันกลายเป็นเรื่องง่ายมาก ... นี่คือวิธีที่คุณเรียกใช้ Static Generic Method โดยใช้ Reflection:
// Grabbing the type that has the static generic method
Type typeofClassWithGenericStaticMethod = typeof(ClassWithGenericStaticMethod);
// Grabbing the specific static method
MethodInfo methodInfo = typeofClassWithGenericStaticMethod.GetMethod("PrintName", System.Reflection.BindingFlags.Static | BindingFlags.Public);
// Binding the method info to generic arguments
Type[] genericArguments = new Type[] { typeof(Program) };
MethodInfo genericMethodInfo = methodInfo.MakeGenericMethod(genericArguments);
// Simply invoking the method and passing parameters
// The null parameter is the object to call the method from. Since the method is
// static, pass null.
object returnValue = genericMethodInfo.Invoke(null, new object[] { "hello" });