如何获取接口方法的MethodInfo,实现类方法的MethodInfo?
我有接口方法的MethodInfo
和实现接口的类的Type
嗯>。 我想找到实现接口方法的类方法的MethodInfo
。
简单的 method.GetBaseDefinition()
不适用于接口方法。 按名称查找也不起作用,因为当显式实现接口方法时,它可以具有任何名称(是的,在 C# 中不是)。
那么涵盖所有可能性的正确方法是什么?
I have a MethodInfo
of an interface method and Type
of a class that implements the interface.
I want to find the MethodInfo
of the class method that implements the interface method.
The simple method.GetBaseDefinition()
does not work with interface methods.
Lookup by name won't work either, because when implementing interface method explicitly it can have any name (yes, not in C#).
So what is the correct way of doing that that covers all the possibilities?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
好的,我找到了一种方法,使用 GetInterfaceMap。
OK, I found a way, using GetInterfaceMap.
这是一个扩展方法!
Here's an extension method!
我用这个。
I use this.