gpt4 book ai didi

c# - 如何使用反射创建 Action,其中 T 是发现的通用类型

转载 作者:行者123 更新时间:2023-12-02 04:30:56 25 4
gpt4 key购买 nike

如何在 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>是一个实际上应该做某事的委托(delegate)...所以你需要为此编写一个主体:

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

关于c# - 如何使用反射创建 Action<T>,其中 T 是发现的通用类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23142920/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com