作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个包含两个方法的类,用相同的名称和参数重载,但其中一个是通用的:
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.]
最佳答案
您可以使用 LINQ 来获取通用或非通用的:
fooType.GetMethods().First(m => m.Name == "Bar" && m.IsGenericMethod)
要获得非泛型重载,只需否定 m.IsGenericMethod
的结果即可。
关于c# - 具有泛型重载的 GetMethod,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28155648/
我是一名优秀的程序员,十分优秀!