Extension method

In this chapter you will learn:

  1. What is extension method and how to use extension method
  2. Adding extension method for int

Create extension method

Extension methods add new functions to existing types. Sometime it can be system types. For example, you can add extension method to string type. Extension methods must stay in static class and must be static method itself. The first parameter is marked by this keyword.

using System;/*from   j  av  a2 s  .c  om*/

public static class StringHelper
{
    public static bool IsCapitalized(this string s)
    {
        if (string.IsNullOrEmpty(s)) return false;
        return char.IsUpper(s[0]);
    }
}
class Test
{
    static void Main()
    {
        string str = "java2s.com";
        Console.WriteLine(str.IsCapitalized());

    }
}

The output:

Adding extension method for int

The following code adds extension method for int type.

using System;//from  ja v  a2  s.  c  o m
using System.Text;
using System.Reflection;

using System.Runtime.CompilerServices;

public static class MyExtensions
{
    public static void DisplayDefiningAssembly(this object obj)
    {
        Console.WriteLine(obj.GetType().Name);
        Console.WriteLine(Assembly.GetAssembly(obj.GetType()));
    }
    public static int ReverseDigits(this int i)
    {
        char[] digits = i.ToString().ToCharArray();
        Array.Reverse(digits);
        string newDigits = new string(digits);
        return int.Parse(newDigits);
    }
}
class Program
{
    static void Main(string[] args)
    {
        int myInt = 987;
        myInt.DisplayDefiningAssembly();
        Console.WriteLine("{0} is reversed to {1}", myInt, myInt.ReverseDigits());
        Console.ReadLine();
    }
}

Next chapter...

What you will learn in the next chapter:

  1. What are the difference between struct and class
Home » C# Tutorial » Class
Classes and Structs
Encapsulation
Class and Struct Accessibility
Members
Static Members
Class
Class instance variables
Class instance Methods
Class Inheritance
Class constructor
Default constructors
Parameters of constructors
Constructor overloading
Static Constructor
Destructor
Override destructor
new operator
Class field
Static Fields
Read only field
Field default value
const value
Abstract class
Static Class
Partial type
Methods
Method local variable
Method Overloading
Method overloading with ref and out
Type conversion and method overloading
Error in Method overloading
virtual methods
Override methods
Method Parameter
Pass parameters
ref parameters
out parameters
Variable parameter length
Optional parameters
Named parameters
static method
function Return
Recursive methods
Virtual methods and polymorphism
Cast
Shadow inherited members
Seal a member
this keyword
base keyword
base and name hiding
Access Specifiers
private
public
protected
internal
Indexer
String type indexer
Multidimensional indexer
Indexer overloading
Indexer to append
Indexer logic
Properties
Properties getter and setter
Accessibilities of properties
Automatic properties
Read only and write only property
Virtual properties
Abstract Properties
Static Properties
interface
interface implementation
Explicit interface implementation
Interface inheritance
Indexer in an interface
Interface Properties
struct and interface
virtual interface implementation
as operator
is operator
null reference
Nested classes
object class
ToString method
GetHashCode
Object initialization
Extension method
Struct Instances vs. Class Instances