C# 获取类实现的接口

C# 获取类实现的接口,c#,.net,reflection,.net-assembly,C#,.net,Reflection,.net Assembly,我在做装配分析项目,遇到了一个问题 我想要实现的是由一个类实现的所有接口的列表,但没有派生接口(以及由派生类实现的接口) 下面是一个示例(来自LinqPad,.Dump()是一个打印到结果窗口): 但我正在寻找是否有一种替代方法,即迭代方法 有没有办法做到这一点 我尽量用自我记录的方式来写我的答案。变量名也可以用来解释它们在做什么。因此,我将让代码进行对话:) 事实上,这很直截了当,完全符合我的要求。非常感谢。 void Main() { typeof(A).GetInterfaces(

我在做装配分析项目,遇到了一个问题

我想要实现的是由一个类实现的所有接口的列表,但没有派生接口(以及由派生类实现的接口)

下面是一个示例(来自LinqPad,
.Dump()
是一个打印到结果窗口):

但我正在寻找是否有一种替代方法,即迭代方法


有没有办法做到这一点

我尽量用自我记录的方式来写我的答案。变量名也可以用来解释它们在做什么。因此,我将让代码进行对话:)


事实上,这很直截了当,完全符合我的要求。非常感谢。
void Main()
{
    typeof(A).GetInterfaces().Dump(); //typeof(IT), typeof(IT<Int32>) 
    typeof(B).GetInterfaces().Dump(); //typeof(IT<Int32>) 
    typeof(C).GetInterfaces().Dump(); //typeof(IT), typeof(IT<Int32>) 
}

class C : A {}

class A : IT {}

class B : IT<int> {}

public interface IT : IT <int> {}

public interface IT<T> {}
    typeof(A).GetInterfaces().Dump();  //typeof(IT)
    typeof(B).GetInterfaces().Dump();  //typeof(IT<Int32>) 
    typeof(C).GetInterfaces().Dump();  //
Type type = typeof(E);
var interfaces = type.GetInterfaces()
    .Where(i => type.GetInterfaceMap(i).TargetMethods.Any(m => m.DeclaringType == type))
    .ToList();
public static class InterfaceDumperExtension
{

    public static Type[] DumpInterface(this Type @type)
    {
        //From your question, I think that you only want to handle
        //class case so I am throwing here but you can handle accordingly
        if (@type.IsClass == false)
        {
            throw new NotSupportedException($"{@type} must be a class but it is not!");
        }

        //All of the interfaces implemented by the class
        var allInterfaces = new HashSet<Type>(@type.GetInterfaces());

        //Type one step down the hierarchy
        var baseType = @type.BaseType;

        //If it is not null, it might implement some other interfaces
        if (baseType != null)
        {
            //So let us remove all the interfaces implemented by the base class
            allInterfaces.ExceptWith(baseType.GetInterfaces());
        }

        //NOTE: allInterfaces now only includes interfaces implemented by the most derived class and
        //interfaces implemented by those(interfaces of the most derived class)

        //We want to remove interfaces that are implemented by other interfaces
        //i.e
        //public interface A : B{}
        //public interface B {}
        //public class Top : A{}→ We only want to dump interface A so interface B must be removed

        var toRemove = new HashSet<Type>();
        //Considering class A given above allInterfaces contain A and B now
        foreach (var implementedByMostDerivedClass in allInterfaces)
        {
            //For interface A this will only contain single element, namely B
            //For interface B this will an empty array
            foreach (var implementedByOtherInterfaces in implementedByMostDerivedClass.GetInterfaces())
            {
                toRemove.Add(implementedByOtherInterfaces);
            }
        }

        //Finally remove the interfaces that do not belong to the most derived class.
        allInterfaces.ExceptWith(toRemove);

        //Result
        return allInterfaces.ToArray();
    }
}
public interface Interface1 { }
public interface Interface2 { }
public interface Interface3 { }
public interface DerivedInterface1 : Interface1 { }
public interface DerivedInterface2 : Interface2 { }
public class Test : DerivedInterface1, DerivedInterface2, Interface3 { }

var result = typeof(Test).DumpInterface();
//Contains only DerivedInterface1, DerivedInterface2, Interface3