What are extension methods in .NET?
EDIT: I have posted a follow up question at Usage of Extension Methods
|
What are extension methods in .NET? EDIT: I have posted a follow up question at Usage of Extension Methods |
|||||||||||||||||
|
Reference: http://weblogs.asp.net/scottgu/archive/2007/03/13/new-orcas-language-feature-extension-methods.aspx Here is a sample of an Extension Method (notice the
Now, the above method can be called directly from any string, like such:
The added methods will then also appear in IntelliSense:
As regards a practical use for Extension Methods, you might add new methods to a class without deriving a new class. Take a look at the following example:
As you see, the class
|
|||||
|
|
Extension methods are ways for developers to "add on" methods to objects they can't control. For instance, if you wanted to add a "DoSomething()" method to the System.Windows.Forms object, since you don't have access to that code, you would simply create an extension method for the form with the following syntax.
Now within a form you can call "Me.DoSomething()". In summary, it is a way to add functionality to existing objects without inheritance. |
|||
|
|
|
An extension method is a "compiler trick" that allows you to simulate the addition of methods to another class, even if you do not have the source code for it. For example:
In theory, all collection classes now include an If I've missed anything important, I'm sure someone will point it out. (Please!) Naturally, there are rules about the declaration of extension methods (they must be static, the first parameter must be preceeded by the Extension methods do not actually modify the classes they appear to be extending; instead, the compiler mangles the function call to properly invoke the method at run-time. However, the extension methods properly appear in intellisense dropdowns with a distinctive icon, and you can document them just like you would a normal method (as shown above). Note: An extension method never replaces a method if a method already exists with the same signature. |
|||||||
|
|
Here's the example in VB.Net; notice the Extension() attribute. Place this in a Module in your project.
|
|||
|
|
|
This question has already been answered, but I'd like to add that it is very useful if you've got types that are within another project and you don't want to go back to that project in order to add some functionality. We're using NHibernate and have a project for our data persistence layer that the guys want to keep clean. In order to get nice and discoverable additional methods onto those object I was able to use extension methods and it really brightened my day. Also, since no one else has posted it, here's a good article about it on MSDN - http://msdn.microsoft.com/en-us/library/bb383977.aspx |
|||
|
|