我在变量中指定了类型:Type hiddenType
.我需要创建一个Func<T>
委托,其中T
是上述变量中指定的类型,并分配一个方法:
var funcType = typeof(Func<>).MakeGenericType(hiddenType);
Func<object> funcImplementation = () => GetInstance(hiddenType);
var myFunc= Delegate.CreateDelegate(funcType , valueGenerator.Method);
它不起作用 - 因为funcImplementation
返回object
而不是期望的。在运行时,它肯定是 hiddenType
中指定的类型的实例。
GetInstance
返回object
和签名无法更改。
您可以通过手动构建表达式树并插入强制转换来解决此问题 hiddenType
.构造表达式树时允许这样做。
var typeConst = Expression.Constant(hiddenType);
MethodInfo getInst = ... // <<== Use reflection here to get GetInstance info
var callGetInst = Expression.Call(getInst, typeConst);
var cast = Expression.Convert(callGetInst, hiddenType);
var del = Expression.Lambda(cast).Compile();
注意:上面的代码假设GetInstance
是static
。如果它不是静态的,请更改构造callGetInst
的方式,以传递调用该方法的对象。
如果您无法更改 GetInstance 签名,则可以考虑使用泛型包装器,而不是使用 Type:
private Func<THidden> GetTypedInstance<THidden>()
{
return () => (THidden)GetInstance(typeof(THidden));
}
然后你可以用
GetTypedInstance<SomeClass>();
而不是
GetInstance(typeof(SomeClass));