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?
Is it possible to override or shadow (new in C#) instance methods with extension methods? |
||||
|
|
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.
|
No. From MSDN:
|
|||
|
|
|
@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. |
|||
|
|