如果我有继承类类型的MethodInfo,如何获取接口的MethodInfo?

时间:2013-01-31 08:34:14

标签: c# .net reflection methodinfo

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

3 个答案:

答案 0 :(得分:3)

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

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

答案 1 :(得分:1)

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

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];
}

答案 2 :(得分:0)

如果你想从类实现的接口找到Method,那么这样的东西应该可以工作

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();