开发者

Optimized way to get "get_Item" MethodInfo

开发者 https://www.devze.com 2023-02-10 03:10 出处:网络
Right now, I have: targetType.GetMethod(\"get_Item\", BindingFlags.Instance) Is there anything开发者_StackOverflow better?I prefer to use PropertyInfo.GetIndexParameters:

Right now, I have: targetType.GetMethod("get_Item", BindingFlags.Instance)

Is there anything开发者_StackOverflow better?


I prefer to use PropertyInfo.GetIndexParameters:

var indexers = targetType.GetProperties(bindingFlags)
                         .Where(p => p.GetIndexParameters().Any());
                         .Select(p => p.GetGetMethod());

Now indexers is an IEnumerable<MethodInfo> of the getters of the indexers that match the specified BindingFlags given in bindingFlags.

Note how the code reads like from the targetType, get the properties that match the bindingFlags, take those that are an indexer, and then project to the getter. It is much less mysterious than using the magic string "get_Item", and multiple indexers are handled easily.

If you know there is only one, you could of course use Single. If you are looking for a specific one of many, you can inspect the result of GetIndexParameters accordingly.


The proper way is to retrieve the DefaultItemAttribute for the class. It has the name of the indexer property. It doesn't have to be "Item", languages like VB.NET allows specifying any property to be the indexer. Jason's code will also fail on them, there can be more than one indexed property. But only one default.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号