Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Is there any way in C# to override a class method with an extension method?

Is it possible to override or shadow (new in C#) instance methods with extension methods?

share|improve this question

marked as duplicate by nawfal, Yehuda Katz, carlosfigueira, Pratik, slfan Jan 15 at 6:34

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 12 down vote accepted

No. From MSDN:

You can use extension methods to extend a class or interface, but not to override them. An extension method with the same name and signature as an interface or class method will never be called. At compile time, extension methods always have lower priority than instance methods defined in the type itself.

share|improve this answer
I was about to quote the exact same article ;) – Jean Regisser Nov 16 '09 at 22:16

@Jean; Exactly.

Also, remember that Extension methods are just syntactic sugar; you're not actually extending the class, just making a static method that takes the class as an argument.

share|improve this answer
Very good point, many people forget how they work. – Gregory Nov 16 '09 at 23:39

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