如何在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**);