Click here to Skip to main content
15,884,425 members
Articles / Programming Languages / C#

Extension Methods in C#

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
21 Jul 2011CPOL1 min read 6.5K   2  
Extension methods in C#

As the name implies, extension methods allow existing classes to be extended without using inheritance or changing class’s source code.

Some important points when using extension methods are as follows:

  • You cannot use extension methods to override existing methods
  • An extension method with the same name and signature as an instance method must not be called
  • The concept must not be applied to fields, properties or events
  • Do not overuse

As an example, we’ll create an extension method to the existing ‘String’ class. We’ll implement the functionality of converting a string to a proper case. (Any given string will be converted to lower case, having the first letter of each word in upper case. For example, ‘this is sample text’ will be converted to ‘This Is Sample Text’).

Add a class and add the following code:

C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ExtensionMethods {
public static class SampleExtensionMethods {
public static string ToProper(this string zSource) {
StringBuilder sb = new StringBuilder();

string zTemp = zSource.ToLower();
List<string> data = zTemp.Split(new char[] { ' ' }).ToList<string>();
if (data.Count > 0) {
foreach (string element in data) {
if (element.Trim().Length > 0) {
sb.Append(element.Trim().Substring(0, 1).ToUpper() + element.Trim().Substring(1, 
    element.Trim().Length - 1) + " ");
}
}
}

return sb.ToString().Trim();
}
}
}

Please note that the class should be static and the method should be public (unless you are writing it within the same class which you intend to use it). And also in input the parameter I have mentioned 'this'. This will tell the compiler to add the following method to the 'String' class.

Before using, include the namespace. (I have used 'ExtensionMethods' as the namespace):

C#
using ExtensionMethods;

And you can use the method we created using this syntax:

C#
SomeStringVar.ToProper()

For example:

C#
using System;
using System.Text;
using ExtensionMethods;

namespace SampleConsoleApplicationA {
class SampleExtMethod {
static void Main(string[] args) {
string zSample = "this is sample text";
Console.WriteLine("Input : " + zSample);
Console.WriteLine("Output : " + zSample.ToProper());
Console.ReadLine();
}
}
}

And if you run the application, you can get the below output (I have used a console application to illustrate this):

Extension Method

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Technical Lead Air Liquide Industrial Services (Singapore)
Singapore Singapore
My passion lies in building business intelligence and data-based solutions, writing about things I work with and talking about it. New technologies relevant to my line of work interest me and I am often seen playing with early releases of such technologies.

My current role involves architecting and building a variety of data solutions, providing database maintenance and administration support, building the organization’s data practice, and training and mentoring peers.

My aspiration over the next several years is to achieve higher competency and recognition in the field of Data Analytics and move into a career of data science.


Specialities: SQL Server, T-SQL Development, SQL Server Administration, SSRS, SSIS, C#, ASP.Net, Crystal Reports

Comments and Discussions

 
-- There are no messages in this forum --