如何获取 Array.IndexOf(string[], string) MethodInfo?

发布于 2025-01-02 05:30:18 字数 297 浏览 1 评论 0原文

如何获取 Array.IndexOf(string[], string)MethodInfo

我尝试使用这段代码,但不起作用。

typeof(Array).GetMethod("IndexOf", 
 BindingFlags.Public | BindingFlags.Static, null, 
  new Type[] { typeof(string[]), typeof(string) }, null);

How to get MethodInfo for Array.IndexOf<string>(string[], string) ?

I try using this code, but doesn't work.

typeof(Array).GetMethod("IndexOf", 
 BindingFlags.Public | BindingFlags.Static, null, 
  new Type[] { typeof(string[]), typeof(string) }, null);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

怎樣才叫好 2025-01-09 05:30:18

使用 BindingFlags.Public | BindingFlags.Static

编辑:

下面的注释是正确的,问题是 IndexOf 方法是通用的 - 只有一个 Array.IndexOf< T>(T[],T)。为了得到这个,这对我有用:

var indexOfGeneric = typeof(Array).GetMethods(BindingFlags.Public | BindingFlags.Static)
                                  .First(m => m.Name == "IndexOf" 
                                           && m.GetParameters().Length == 2
                                           && m.IsGenericMethod );

Use BindingFlags.Public | BindingFlags.Static

Edit:

The comment below is correct, the problem is that the IndexOf method is generic - there is only a Array.IndexOf<T>(T[], T). To get that one this is what worked for me:

var indexOfGeneric = typeof(Array).GetMethods(BindingFlags.Public | BindingFlags.Static)
                                  .First(m => m.Name == "IndexOf" 
                                           && m.GetParameters().Length == 2
                                           && m.IsGenericMethod );
很糊涂小朋友 2025-01-09 05:30:18

发现这篇博客文章似乎可以实现您的要求;

http://blog.functionfun.net/2009/10 /getting-methodinfo-of-generic-method.html

示例用法如下;

var m = SymbolExtensions.GetMethodInfo(() => Array.IndexOf<string>(null, null));

这样,您将获得 IndexOf(String[], String)MethodInfo,而不是 IndexOf(T[], T)

Found this blog post that seems to achieve what you're asking for;

http://blog.functionalfun.net/2009/10/getting-methodinfo-of-generic-method.html

Sample usage would be as follows;

var m = SymbolExtensions.GetMethodInfo(() => Array.IndexOf<string>(null, null));

This way, you get the MethodInfo of IndexOf<String>(String[], String), instead of IndexOf<T>(T[], T).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文