gpt4 book ai didi

c# - 如何使用反射访问精确的方法组表达式?

转载 作者:太空宇宙 更新时间:2023-11-03 12:57:24 27 4
gpt4 key购买 nike

我知道如何获取特定方法的 MethodInfo,也知道如何通过反射调用该方法。但是我无法弄清楚以下内容:

我有下面的赋值语句:

Func<double, double> myFunc = Math.Sqrt;

我想通过反射获得 myFunc 变量的完全相同的内容,手头有 Math.Sqrt 的 MethodInfo。不幸的是,围绕 MethodInfo 构建包装器 lambda 或表达式并不令人满意。我想要这样的东西:

Func<double, double> myFunc = GetMethodGroupFor(methodInfoForMathSqrt);

如果孤立的样本没有解释我真正想做的事情,这里有更多的解释:

我必须填写 Dictionary<string, Func<double, double>>有数百个方法“键”和代表。喜欢:

myDictionary.Add("mykey", Math.Sqrt);

但是我不想通过 100 条赋值语句来做到这一点,相反我想通过反射获得 100 条适当的 MethodInfo,然后在 for 循环中填充字典。

这可能吗?

最佳答案

我假设您将使用反射来查找与特定签名匹配的方法,如下所示:

IEnumerable<MethodInfo> methods = typeof(Math).GetMethods()
.Where(method =>
{
if (method.ReturnType != typeof(double))
return false;

var parameters = method.GetParameters();
return parameters.Length == 1 && parameters[0].ParameterType == typeof(double);
});

从那里,你可以填写你的字典如下:

var methodLookup = new Dictionary<string, Func<double, double>>();
foreach (MethodInfo method in methods)
{
var name = method.DeclaringType.Name + "." + method.Name;
var d = (Func<double, double>)Delegate.CreateDelegate(typeof(Func<double, double>), method);
methodLookup[name] = d;
}

关于c# - 如何使用反射访问精确的方法组表达式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33473253/

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