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

To check if a type is a subclass of another type in C#, it's easy:

typeof (SubClass).IsSubclassOf(typeof (BaseClass)); // returns true

However, this will fail:

typeof (BaseClass).IsSubclassOf(typeof (BaseClass)); // returns false

Is there any way to check whether a type is either a subclass OR of the base class itself, without using an OR operator or using an extension method?

share|improve this question

3 Answers

up vote 53 down vote accepted

Use this:

if (typeof(BaseClass).IsAssignableFrom(typeof(SubClass)))

Note that you reverse the order of the classes compared to the code you have in your question.

Link: Type.IsAssignableFrom Method.

share|improve this answer
Thanks! I'll mark this as the correct answer (gotta wait 8 more minutes) since you mentioned that the check has to be reversed and provided a link to the MSDN documentation. – Daniel T. Apr 30 '10 at 4:30
15  
Note that this doesn't actually do what the question asked for; this does not determine whether one type is a subclass of another, but rather whether one type is assignment compatible with another. An array of uint isn't a subclass of an array of int, but they are assignment compatible. IEnumerable<Giraffe> isn't a subclass of IEnumerable<Animal>, but they are assignment compatible in v4. – Eric Lippert Apr 30 '10 at 6:07
Thanks Eric, good to keep in mind. – Daniel T. Apr 30 '10 at 7:04
Shoot, I didn't think of that, thanks Eric! – Lasse V. Karlsen Apr 30 '10 at 7:26
typeof(BaseClass).IsAssignableFrom(unknownType);
share|improve this answer

You should try using Type.IsAssignableFrom instead.

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.