vote up 0 vote down star

Which of these pieces of code is faster?

if (obj is ClassA) {}

if (obj.GetType() == typeof(ClassA)) {}

Edit: I'm aware that they don't do the same thing.

flag

54% accept rate

5 Answers

vote up 6 vote down check

This should answer that question, and then some.

The second for those that don't want to read the article.

link|flag
vote up 5 vote down

Does it matter which is faster, if they don't do the same thing? Comparing the performance of statements with different meaning seems like a bad idea.

is tells you if the object implements ClassA anywhere in its type heirarchy. GetType() tells you about the most-derived type.

Not the same thing.

link|flag
It does matter, because in my case I'm positive they return the same result. – ilitirit Oct 8 '08 at 20:25
@[ilitirit]: they return the same result right now, but if you add a subclass later they won't – Steven A. Lowe Oct 8 '08 at 21:13
Optimising now will make your code brittle and difficult to maintain. – ICR Oct 8 '08 at 21:40
My classes are sealed. – ilitirit Oct 10 '08 at 11:52
vote up 1 vote down

They don't do the same thing. The first one works if obj is of type ClassA or of some subclass of ClassA. The second one will only match objects of type ClassA. The second one will be faster since it doesn't have to check the class hierarchy.

For those who want to know the reason, but don't want to read the article referenced in http://stackoverflow.com/questions/184681/is-vs-typeof#184697.

link|flag
vote up -1 vote down

I believe the answer is number 1 - it's a single comparison rather than a function call and comparison.

link|flag

Your Answer

Get an OpenID
or

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