我有一个类类型的方法的MethodInfo,它是该类实现的接口(interface)定义的一部分。
如何在类实现的接口(interface)类型上检索方法的匹配MethodInfo对象?

最佳答案

我认为我找到了做到这一点的最佳方法:

var methodParameterTypes = classMethod.GetParameters().Select(p => p.ParameterType).ToArray();
MethodInfo interfaceMethodInfo = interfaceType.GetMethod(classMethod.Name, methodParameterTypes);

关于c# - 如果我具有继承的类类型的MethodInfo,如何获取接口(interface)的MethodInfo?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14621451/

10-11 04:56