6

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

4

3 回答 3

4

我想我找到了最好的方法:

var methodParameterTypes = classMethod.GetParameters().Select(p => p.ParameterType).ToArray();
MethodInfo interfaceMethodInfo = interfaceType.GetMethod(classMethod.Name, methodParameterTypes);
于 2013-01-31T08:49:22.160 回答
3

对于显式实现的接口方法,按名称和参数查找将失败。这段代码也应该处理这种情况:

private static MethodInfo GetInterfaceMethod(Type implementingClass, Type implementedInterface, MethodInfo classMethod)
{
    var map = implementingClass.GetInterfaceMap(implementedInterface);
    var index = Array.IndexOf(map.TargetMethods, classMethod);
    return map.InterfaceMethods[index];
}
于 2017-08-04T14:45:51.653 回答
-1

如果你想从类实现的接口中找到方法,这样的事情应该可以工作

MethodInfo interfaceMethod = typeof(MyClass).GetInterfaces()
                .Where(i => i.GetMethod("MethodName") != null)
                .Select(m => m.GetMethod("MethodName")).FirstOrDefault();

或者,如果您想从类中的方法信息中获取类实现的接口中的方法,您可以这样做。

    MethodInfo classMethod = typeof(MyClass).GetMethod("MyMethod");

    MethodInfo interfaceMethod = classMethod.DeclaringType.GetInterfaces()
        .Where(i => i.GetMethod("MyMethod") != null)
        .Select(m => m.GetMethod("MyMethod")).FirstOrDefault();
于 2013-01-31T08:40:58.410 回答