Type.IsSubclassOf方法仅适用于两种具体类型,例如:
public class A {} public class B : A {} typeof(B).IsSubclassOf(typeof(A)) // returns true
有没有办法找出一个接口是否扩展另一个?例如
public interface IA {} public interface IB : IA {}
我唯一能想到的是在IB上使用GetInterfaces并检查它是否包含IA,是否有人知道另一种/更好的方法来做到这一点?
解决方法
你可以做
bool isAssignable = typeof(IA).IsAssignableFrom(typeof(IB));
在这种情况下,我猜你会得到你需要的信息,但当然也不仅适用于接口.
我假设你有Type对象,如果你有实际的实例,这个更短,更清晰,性能更高:
public interface ICar : IVehicle { /**/ } ICar myCar = GetSomeCar(); bool isVehicle = myCar is IVehicle;