Does extension method come under object oriented concept in c#? Is it in good practice to use extension method? In Software development life cycle, How should we consider this in design phase?
|
|
Extension methods are not an object oriented language feature. (compared to: classes, inheritance, polymorphism etc). Like every language feature, it should be used where it is appropriate and for what it is designed for. There are already dozens of questions about when and how to use Extension methods. |
|||
|
|
|
Eric Lippert has blogged about this and I suspect I can't do much better than to quote him:
I would add, however, that they're useful beyond just LINQ - for the same reason that they're useful in LINQ. It's really nice to be able to express algorithms which work on arbitrary implementations of a particular interface (such as If you accept that you've got some static utility method, which syntax would you rather use?
The latter is simply more readable in my opinion. It concisely expresses what you want to do. It doesn't make it clear how you want to do it, but that's less important for most of the time - and more important when you're debugging that particular line, of course. |
|||
|
|
|
There are two parts to it.
Yes; Compiled code has a static method using the object on which extension method was invoked |
|||
|
|
|
Extension methods are just a language feature. They work on object instances and are very nice tool. Consider them as a different way to extend class functionality. You can add new functionality to a class:
Rather an organizational / language feature. Does not break object-oriented concept in any way. Just as header/source file division in C/C++ has nothing to do with object-orientation, just a language/framework feature. |
|||
|
|
|
It depends. Extension methods are just a tool. They can be very useful when used appropriately. But if you use them too much, it can obscure your code. |
|||
|
|
|
Extension Methods are just static methods that work with a specific Class or Class Hierarchy. Python is OO but has modules, Ruby has mixins. I see it more as a language feature. I am pretty sure its still OO friendly |
|||
|
|
