【问题标题】:Translating a MethodInfo object obtained from an interface type, to the corresponding MethodInfo object on an implementing type in C#?将从接口类型获得的 MethodInfo 对象转换为 C# 中实现类型上的相应 MethodInfo 对象?
【发布时间】:2010-12-04 05:59:57
【问题描述】:

我的问题是:如果我有 MethodInfo 对象,对于从接口类型获得的方法,并且我也有实现此接口的类的 Type 对象,但它用一个显式实现,如何正确获取该类中实现方法对应的MethodInfo对象?

我需要这样做的原因是实现方法可以应用一些属性,我需要通过反射找到这些属性,但是需要找到这些属性的类只有实现类的对象引用,以及接口的 Type 对象(+ 对应的 MethodInfo 对象)。

所以,假设我有以下程序:

using System;
using System.Reflection;

namespace ConsoleApplication8
{
    public interface ITest
    {
        void Test();
    }

    public class Test : ITest
    {
        void ITest.Test()
        {
            throw new NotImplementedException();
        }
    }

    class Program
    {
        static void Main(string[] args)
        {
            Type interfaceType = typeof(ITest);
            Type classType = typeof(Test);

            MethodInfo testMethodViaInterface =
                interfaceType.GetMethods()[0];
            MethodInfo implementingMethod =
                classType.GetMethod(/* ??? */"Test");

            Console.Out.WriteLine("interface: " +
                testMethodViaInterface.Name);
            if (implementingMethod != null)
                Console.Out.WriteLine("class: " +
                    implementingMethod.Name);
            else
                Console.Out.WriteLine("class: unable to locate");

            Console.Out.Write("Press enter to exit...");
            Console.In.ReadLine();
        }
    }
}

运行它给了我:

interface: Test
class: unable to locate
Press enter to exit...

在代码中有一个带有 ??? 的 .GetMethod 调用评论。这部分是我需要帮助的。我需要在这里指定什么(我已经测试了很多,这让我想到了另一种方式)或者我需要用什么替换这段代码。

由于我使用了接口中方法的显式实现,因此方法的实际名称不仅仅是“Test”。如果我转储类类型的 GetMethods() 数组的全部内容,使用以下代码:

foreach (var mi in classType.GetMethods(
    BindingFlags.Instance | BindingFlags.NonPublic | BindingFlags.Public))
{
    Console.Out.WriteLine(mi.Name);
}

然后我明白了:

ConsoleApplication8.ITest.Test         <-- this is the one I want
ToString
Equals
GetHashCode
GetType
Finalize
MemberwiseClone

很明显,名称前面有接口的全名及其命名空间。但是,由于重载,看起来我必须在类中找到所有此类实现方法(即假设有多个测试方法因参数而异),然后比较参数。

有没有更简单的方法?基本上,一旦我从接口获得方法的 MethodInfo 对象,我想通过获取其 MethodInfo 对象来找到实现此方法的类的确切方法。

请注意,我在这里处于循环状态,所以如果我必须遍历类中的方法以从接口中找到确切的方法,那没关系,只要我有一个好的方法来识别我何时找到了合适的。

我试着像这样改变上面的循环:

foreach (var mi in classType.GetMethods(
    BindingFlags.Instance | BindingFlags.NonPublic | BindingFlags.Public))
{
    if (mi.GetBaseDefinition() == testMethodViaInterface)
        Console.Out.WriteLine(mi.Name);
}

这并没有打印出任何东西,所以很明显,这种方法上的GetBaseDefinition 并没有从接口指向 MethodInfo 对象。

任何指针?

【问题讨论】:

标签: c# reflection interface methodinfo


【解决方案1】:

为了将来参考,如果其他人有兴趣,@Greg Beechhere 给我的解决方案是使用Type.GetInterfaceMap

这是修改后的程序代码,底部有一个扩展方法。

using System;
using System.Linq;
using System.Reflection;
using System.Diagnostics;

namespace ConsoleApplication8
{
    public interface ITest
    {
        void Test();
    }

    public class Test : ITest
    {
        void ITest.Test()
        {
            throw new NotImplementedException();
        }
    }

    class Program
    {
        static void Main(string[] args)
        {
            Type interfaceType = typeof(ITest);
            Type classType = typeof(Test);

            InterfaceMapping map = classType.GetInterfaceMap(interfaceType);

            MethodInfo testMethodViaInterface = interfaceType.GetMethods()[0];
            MethodInfo implementingMethod = testMethodViaInterface.GetImplementingMethod(classType);

            Console.Out.WriteLine("interface: " + testMethodViaInterface.Name);
            if (implementingMethod != null)
                Console.Out.WriteLine("class: " + implementingMethod.Name);
            else
                Console.Out.WriteLine("class: unable to locate"); 

            Console.Out.Write("Press enter to exit...");
            Console.In.ReadLine();
        }
    }

    public static class TypeExtensions
    {
        /// <summary>
        /// Gets the corresponding <see cref="MethodInfo"/> object for
        /// the method in a class that implements a specific method
        /// from an interface.
        /// </summary>
        /// <param name="interfaceMethod">
        /// The <see cref="MethodInfo"/> for the method to locate the
        /// implementation of.</param>
        /// <param name="classType">
        /// The <see cref="Type"/> of the class to find the implementing
        /// method for.
        /// </param>
        /// <returns>
        /// The <see cref="MethodInfo"/> of the method that implements
        /// <paramref name="interfaceMethod"/>.
        /// </returns>
        /// <exception cref="ArgumentNullException">
        /// <para><paramref name="interfaceMethod"/> is <c>null</c>.</para>
        /// <para>- or -</para>
        /// <para><paramref name="classType"/> is <c>null</c>.</para>
        /// </exception>
        /// <exception cref="ArgumentException">
        /// <para><paramref name="interfaceMethod"/> is not defined in an interface.</para>
        /// </exception>
        public static MethodInfo GetImplementingMethod(this MethodInfo interfaceMethod, Type classType)
        {
            #region Parameter Validation

            if (Object.ReferenceEquals(null, interfaceMethod))
                throw new ArgumentNullException("interfaceMethod");
            if (Object.ReferenceEquals(null, classType))
                throw new ArgumentNullException("classType");
            if (!interfaceMethod.DeclaringType.IsInterface)
                throw new ArgumentException("interfaceMethod", "interfaceMethod is not defined by an interface");

            #endregion

            InterfaceMapping map = classType.GetInterfaceMap(interfaceMethod.DeclaringType);
            MethodInfo result = null;

            for (Int32 index = 0; index < map.InterfaceMethods.Length; index++)
            {
                if (map.InterfaceMethods[index] == interfaceMethod)
                    result = map.TargetMethods[index];
            }

            Debug.Assert(result != null, "Unable to locate MethodInfo for implementing method");

            return result;
        }
    }
}

【讨论】:

    【解决方案2】:

    看看Type.GetInterfaceMap。抱歉 - 我很着急,所以没有时间给出完整的答案,但这应该是一个开始。

    【讨论】:

    • 哦,这正是我所需要的,想在其上构建一个扩展方法以便于查询,但它恰到好处!
    • 我将使用扩展方法和编辑后的代码发布我自己的答案。
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2023-04-04
    • 1970-01-01
    • 2013-01-08
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多