gpt4 book ai didi

c# - 具有泛型重载的 GetMethod

转载 作者:行者123 更新时间:2023-12-02 21:20:17 27 4
gpt4 key购买 nike

我有一个包含两个方法的类,用相同的名称和参数重载,但其中一个是通用的:

public class Foo
{
public string Bar(string s) { throw new NotImplementedException(); }
public T Bar<T>(string s) { throw new NotImplementedException(); }
}

如何获得 MethodInfo对于这些方法之一?

例如:

var fooType = typeof(Foo);
var methodInfo = fooType.GetMethod("Bar", new[] { typeof(string) }); // <-- [System.Reflection.AmbiguousMatchException: Ambiguous match found.]

.NET Fiddle here

最佳答案

您可以使用 LINQ 来获取通用或非通用的:

fooType.GetMethods().First(m => m.Name == "Bar" && m.IsGenericMethod)

要获得非泛型重载,只需否定 m.IsGenericMethod 的结果即可。

关于c# - 具有泛型重载的 GetMethod,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28155648/

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