- Extension method
An extension method is a new language feature of C# starting with the 3.0 specification, as well as Visual Basic.NET starting with 9.0 and Oxygene with 2.0.
The problem
Normally, in a situation where it is necessary to add more functionality to a class - for instance a new method - it would simply be a matter of modifying the class'
source code and recompiling the binaries with these new changes to make this effect. However, in some cases, especially when it comes to classes that are built-in into the .NET-framework or reside in third-party assemblies, the programmer does not have access to the source code and is thus unable to change the behavior of the class directly. Hence, the programmer has been left with two other more limited and less intuitive (respectively) options:
# The first option is to inherit the class and then add the functionality.
# The second option is to make a new, separate class and add a static method that takes an object of the class type and returns a new object with the modification of choice.Current C# solutions
The first option is in principle easier, but it is unfortunately limited by the fact that many classes restrict inheritance of certain members or forbids it completely. This includes sealed class and the different primitive data types in C# such as int, float and string. The second option, on the other hand, does not share these restrictions, but it may be less intuitive as it requires a reference to a separate class instead of using the methods of the class in question directly.
As an example, consider a need of extending the string class with a new reverse method whose return value is a string with the characters in reversed order. Because the string class is a sealed type, the method would typically be added to a new
utility class in a manner similar to the following:This may, however, become increasingly difficult to navigate as the library of utility methods and classes increases, particularly for newcomers. The location is also less intuitive because, unlike most string methods, it would not be a member of the string class, but in a completely different class altogether. A better syntax would therefore be the following:
Extension methods
The new language feature of extension methods in C# 3.0, however, makes the latter code possible. This approach requires a static class and a static method, as follows:
The major difference between extension methods and normal, static helper methods is that static methods calls are prefix notation, whereas extension methods calls are in infix notation. This leads to more readable code when the result of one operation is used for another operation.
;With static methods:
;With extension methods:
Extension methods and Instance methods
In C# 3.0, both an instance method and an extension method with the same signature can exist for a class. In such a scenario, the instance method is preferred over the extension method. Neither the compiler nor the
Microsoft Visual Studio IDE warns about the naming conflict. Consider this C# class, where theGetAlphabet()
method is invoked on an instance of this class:Result of invoking
GetAlphabet()
on an instance ofAlphabetMaker
if only the extension method exists: ABCResult if both the instance method and the extension method exist: abc
ee also
*
Anonymous type s
*Lambda expression s
*Expression tree s
* Runtime alterationReferences
* [http://spellcoder.com/blogs/bashmohandes/archive/2006/12/08/4027.aspx C# 3.0 Language Enhancements Presentation]
* [http://www.interact-sw.co.uk/iangblog/2005/09/26/extensionmethods C# 3.0 Extension Methods]
* [http://blogs.msdn.com/abhinaba/archive/2005/09/15/467926.aspx C# 3.0 I Like Extension Methods]
* [http://community.bartdesmet.net/blogs/bart/archive/2006/12/06/C_2300_-3.0-Feature-Focus-_2D00_-Part-4-_2D00_-Extension-Methods.aspx C# 3.0 Feature Focus - Part 4 - Extension Methods]
* [http://dotnet.agilekiwi.com/blog/2007/11/making-extension-methods-safer.html A suggestion for making C# extension methods safer - i.e. allowing compiler warnings on like-named instance methods]External links
* [http://www.extensionmethod.net/ ExtensionMethod.NET Repository]
Wikimedia Foundation. 2010.