gpt4 book ai didi

c# - 获取 Enumerable.First() 的 MethodInfo 与 Enumerable.OfType() 的 MethodInfo?

转载 作者:太空宇宙 更新时间:2023-11-03 23:22:50 25 4
gpt4 key购买 nike

  • 获取 MethodInfo 对于 Enumerable.OfType<T>() 我们可以使用:

    typeof(System.Linq.Enumerable).GetMethod("OfType", new Type[] { typeof(IEnumerable) })
  • 对于 MethodInfo Enumerable.Sum() 我们可以使用类似的:

    typeof(System.Linq.Enumerable).GetMethod("Sum", new Type[] { typeof(IEnumerable<int>) })
  • 但是,对于 MethodInfo对于 'Enumerable.Reverse()`我们必须凑合着用:

    typeof(Enumerable).GetMember("Reverse").OfType<MethodInfo>().First()
  • 当方法被重载时,例如采用谓词,如 Enumerable.First() 得到 MethodInfo调用变得更加笨拙*:

    typeof(Enumerable).GetMember("First").OfType<MethodInfo>().Where(m => m.GetParameters().Length == 1).First()

所有四种方法都出现在 Enumerable 中定义的扩展方法扩展 IEnumerable , IEnumerable<> ,或 IEnumerable<> 的特定专业例如 IEnumerable<int> .

为什么调用typeof(Enumerable).GetMethod("Reverse", new Type { typeof(IEnumerable<>)})typeof(Enumerable).GetMethod("First", new Type[] { typeof(IEnumerable<>) })返回 null而不是 MethodInfo -目的?前两种扩展方式和后两种有什么区别?


*:参见 Get methodinfo for Enumerable.DefaultIfEmptyhttps://stackoverflow.com/a/6384066/814206Select Right Generic Method with Reflection

最佳答案

Enumerable.OfType<T>()

签名:

public static IEnumerable<TResult> OfType<TResult>(
this IEnumerable source
)

Enumerable.Reverse()

签名:

public static IEnumerable<TSource> Reverse<TSource>(
this IEnumerable<TSource> source
)

OfType<>需要 IEnumerable . Reverse<>需要 IEnumerable<> ,不是 IEnumerable

Sum期待 IEnumerable<int> ,可以作为参数类型传入。

获取 MethodInfo 的另一种类型安全的方法是:

public MethodInfo GetMethod(Expression<Action> e)
{
var methodCall = e.Body as MethodCallExpression;
if (methodCall.Method.IsGenericMethod)
return methodCall.Method.GetGenericMethodDefinition();
return methodCall.Method;
}

var method = GetMethod(() => Enumerable.Empty<int>().First());
var overLoadedMethod = GetMethod(() => Enumerable.Empty<int>().First(a => true));

请注意,即使我们请求了 int,我们也得到了 generic 方法模板 - 如果您不知道 TSource,这也可以使用在编译时。

也适用于您没有实例的类型:

GetMethod(() => ((MyThing)null).DoSomething());

关于c# - 获取 Enumerable.First() 的 MethodInfo 与 Enumerable.OfType() 的 MethodInfo?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34791589/

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