从反射创建通用 Func



我在变量中指定了类型: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();

注意:上面的代码假设GetInstancestatic。如果它不是静态的,请更改构造callGetInst的方式,以传递调用该方法的对象。

如果您无法更改 GetInstance 签名,则可以考虑使用泛型包装器,而不是使用 Type:

private Func<THidden> GetTypedInstance<THidden>()
{
    return () => (THidden)GetInstance(typeof(THidden));
}

然后你可以用

GetTypedInstance<SomeClass>();

而不是

GetInstance(typeof(SomeClass));

相关内容

  • 没有找到相关文章

最新更新