public class A<T>
{
public static void B()
{
}
}
我怎么能像这样调用方法B:
Type C = typeof(SomeClass);
A<C>.B()
你需要使用反射。MakeGenericType
允许您Type
使用特定的通用参数获取,然后您可以根据需要获取和调用任何方法。
void Main()
{
Type t = typeof(int);
Type at = typeof(A<>).MakeGenericType(t);
at.GetMethod("B").Invoke(null, new object[]{"test"});
}
public class A<T>
{
public static void B(string s)
{
Console.WriteLine(s+" "+typeof(T).Name);
}
}
作为一种性能优化,您可以使用反射来为每种类型获取一个委托,然后您可以在没有进一步反射的情况下调用它。
Type t = typeof(int);
Type at = typeof(A<>).MakeGenericType(t);
Action<string> action = (Action<string>)Delegate.CreateDelegate(typeof(Action<string>), at.GetMethod("B"));
action("test");