如何使用<T>反射创建操作,其中 T 是发现的泛型类型



如何在C#中完成以下任务?

var someType = new CustomerMessageHandler<CustomerMessage>();
var nType = someType.GetGenericArguments().First().GetType();
// except the next line of code would be a (Action<nType>)
var a = new Action<string>();

Reflection.Emit、Expressions或F#对此有很好的解决方案吗?

注意:"基于惯例"的方法对我来说不是一个选择。我想看看这是否有可能提高我的C#/F#技能。

当然,MakeGenericType将能够为您做到这一点。

Type genericAction = typeof(Action<>);
var someType = new CustomerMessageHandler<CustomerMessage>();
var nType = someType.GetGenericArguments().First().GetType();
var actionType = genericAction.MakeGenericType(new[] { nType });

然而,请注意,Action<T>是一个实际应该做某事的委托。。。所以你需要为此写一个正文:

var actualMethod = Delegate.CreateDelegate(actionType, **your method info here**);

相关内容

  • 没有找到相关文章

最新更新