public class Target3<T,T2>
{
T GetTGenericTest(T2 obj);
}
在上面的代码中,GetTGenericTest
不是GenericMethod,所以MakeGenericMethod
当然不能用。那么,当我有一个MethodInfo
属于 的对象时IInterfaceTarget3<string,int>
,我该怎么做才能将它恢复到它的未定义版本?我不能只使用 MakeGenericType,因为这样我就无法将当前链接MethodInfo
到未定义的链接。
(伪代码保持简短)
List<MethodInfo> undefs = new List<MethodInfo>();
void X()
{
Type t = Typeof(Target3<,>);
MethodInfo undefMi = t.GetMethod("GetTGenericTest");
undefs.Add(undefMi);
}
void Y()
{
var obj = new Target3<string,int>();
MethodInfo defMi = obj.GetType().GetMethod("GetTGenericTest");
//How to do this?
MethodInfo undefMi = undefs.FirstOrDefault(u=> defMi.UndefinedVersion() == u);
}