Your browser does not support JavaScript! Please enable script of your browser.
 
"Coding , A Rhythmic Literary Job"
Handy Tricks For Beginners & Professionals
C# 5.0, 4.0 - Tutorial, Article, Archive, Pdf, Handy Tricks, Code Snippets, Training, Reference Manual, .Net Framework, CLR, CTS, MSIL, IL, Class, Structure, Constructor, Property, Indexer, Inheritance, Interface, Delegates, Attributes

C Sharp Extension method

Posted By : Shailendra Chauhan, 19 Jun 2012
Updated On : 23 Jul 2012
Keywords : extension method with example in c#, linq extension method, basic definition or features of extension method, scope of extension method pdf

An extension method is a static method of a static class that can be invoked using the instance method syntax. Extension methods are used to add new behaviors to an existing type without altering. In extension method "this" keyword is used with the first parameter and the type of the first parameter will be the type that is extended by extension method.

Conceptually, extension methods provides as an implementation of the decorator structural pattern.

 public static class ExtensionClass {
 public static bool IsCapitalized (this string s)
 { if (string.IsNullOrEmpty(s)) 
 return false;
 else
 return char.IsUpper (s[0]); }
}
class Program {
 static void Main(string[] args)
 { bool flag;
 string str="Dotnet-tricks"
 if(str.IsCapitalized()) //invoking the extension method
 Console.WriteLine ("\n The given string is capitalized");
 else
 Console.WriteLine ("\n The given string is not capitalized"); }
}

At compile time an extension method call is translated into an ordinary static method call. The translation of above static method will as follows:

 ExtensionClass.IsCapitalized (str) 

Extension Methods Chaining

Like as instance methods, extension methods also have chaining capability.

 public static class ExtensionClass
{
public static string Pluralize (this string s) {...}
public static string Capitalize (this string s) {...}
}
//we can do chainig of above methods like as
string x = "Products".Pluralize().Capitalize(); 

Ambiguity, resolution and precedence of extension method

To use an extension method, it should be in same scope of class.If two extension methods have the same signature,the more specific method takes precedence.

 static class StringExtension
{ // first method
 public static bool IsCapitalized (this string s) {...}
}
static class ObjectExtension
{
 // second method
 public static bool IsCapitalized (this object s) {...}
}
// code here
// first method is called
bool flag1 = "Dotnet-Tricks".IsCapitalized(); 
// second method is called
bool test2 = (ObjectHelper.IsCapitalized ("Dotnet-Tricks")); 

Key points about extension methods

  1. An extension method is defined as static method but it is called like as instance method.

  2. An extension method first parameter specifies the type of the extended object, and it is preceded by the "this" keyword.

  3. An extension method having the same name and signature like as an instance method will never be called since it has low priority than instance method.

  4. An extension method couldn't override the existing instance methods.

  5. An extension method cannot be used with fields, properties or events.

  6. The compiler doesn't cause an error if two extension methods with same name and signature are defined in two different namespaces and these namespaces are included in same class file using directives. Compiler will cause an error if you will try to call one of them extension method.

Summary

In this article I try to explain extension method and its various use with example. I hope after reading this article you will be able to use this trick in LINQ query. I would like to have feedback from my blog readers. Please post your feedback, question, or comments about this article.

Share this article with your friends !!

 
 
Recommended Articles !!
 
Subscribe & follow Us
 
 
 
 
Search Articles
 
.Net Interview Handy Q&A; (coming soon..)
Instant Razor View Engine How-to
 
Browse By Category
 
Recent Articles
 
Popular Articles
 
Like us on Facebook
 
Join our Training programs in Delhi/Noida - on C#, Asp.Net, MVC, WCF, jQuery, Entity Framework, SQL Server