Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The Type.IsSubclassOf method only works with two concrete types, e.g.

public class A {}
public class B : A {}
typeof(B).IsSubclassOf(typeof(A)) // returns true

Is there a way to find out if an interface extends another? e.g.

public interface IA {}
public interface IB : IA {}

The only thing I can think of is to use GetInterfaces on IB and check if it contains IA, does anyone know of another/better way to do this?

share|improve this question

2 Answers

up vote 11 down vote accepted

You can do

bool isAssignable = typeof(IA).IsAssignableFrom(typeof(IB));

which gives you the information you need in this case I guess, but also of course works not only for interfaces.

I assume you have Type objects, if you have actual instances, this is shorter, clearer and more performant:

public interface ICar : IVehicle { /**/ }

ICar myCar = GetSomeCar();
bool isVehicle = myCar is IVehicle;
share|improve this answer

IsAssignableFrom is what you are looking for. It's the equivalent of the is operator but with runtime values as types.

Examples:

// Does IDerivedInterface implements IBaseInterface ?
bool yes = typeof(IBaseInterface).IsAssignableFrom(typeof(IDerivedInterface));

// Does instance implements IBaseInterface ?
bool yes = typeof(IBaseInterface).IsAssignableFrom(instance.GetType());
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.