Click here to Skip to main content
15,880,427 members
Articles / Desktop Programming / Windows Forms
Article

Understanding Delegates in C#

Rate me:
Please Sign up or sign in to vote.
4.34/5 (174 votes)
15 Sep 2005CPOL2 min read 832.8K   124   85
This article describes delegates in C#.

Introduction

Delegate is like a buzz word in C#.NET programming. In this article, I explain delegates, multicast delegates and their usage with the help of simple C# programs.

What is a Delegate?

Delegate is a type which  holds the method(s) reference in an object. It is also referred to as a type safe function pointer.

Advantages

  • Encapsulating the method's call from caller
  • Effective use of delegate improves the performance of application
  • Used to call a method asynchronously

Declaration

public delegate type_of_delegate delegate_name()

Example:

C#
public delegate int mydelegate(int delvar1,int delvar2)

Note

  • You can use delegates without parameters or with parameter list
  • You should follow the same syntax as in the method
    (If you are referring to the method with two int parameters and int return type, the delegate which you are declaring should be in the same format. This is why it is referred to as type safe function pointer.)

Sample Program using Delegate

C#
public delegate double Delegate_Prod(int a,int b);
class Class1
{
    static double fn_Prodvalues(int val1,int val2)
    {
        return val1*val2;
    }
    static void Main(string[] args)
    {
        //Creating the Delegate Instance
        Delegate_Prod delObj = new Delegate_Prod(fn_Prodvalues);
        Console.Write("Please Enter Values");
        int v1 = Int32.Parse(Console.ReadLine());
        int v2 = Int32.Parse(Console.ReadLine());
        //use a delegate for processing
        double res = delObj(v1,v2);
        Console.WriteLine ("Result :"+res);
        Console.ReadLine();
    }
}

Explanation

Here I have used a small program which demonstrates the use of delegate.

The delegate "Delegate_Prod" is declared with double return type and accepts only two integer parameters.

Inside the class, the method named fn_Prodvalues is defined with double return type and two integer parameters. (The delegate and method have the same signature and parameter type.)

Inside the Main method, the delegate instance is created and the function name is passed to the delegate instance as follows:

C#
Delegate_Prod delObj = new Delegate_Prod(fn_Prodvalues);

After this, we are accepting the two values from the user and passing those values to the delegate as we do using method:

C#
delObj(v1,v2);

Here delegate object encapsulates the method functionalities and returns the result as we specified in the method.

Multicast Delegate

What is Multicast Delegate?

It is a delegate which holds the reference of more than one method.

Multicast delegates must contain only methods that return void, else there is a run-time exception.

Simple Program using Multicast Delegate

C#
delegate void Delegate_Multicast(int x, int y);
Class Class2
{
    static void Method1(int x, int y)
    {
        Console.WriteLine("You r in Method 1");
    }

    static void Method2(int x, int y)
    {
        Console.WriteLine("You r in Method 2");
    }

    public static void <place w:st="on" />Main</place />()
    {
        Delegate_Multicast func = new Delegate_Multicast(Method1);
        func += new Delegate_Multicast(Method2);
        func(1,2);             // Method1 and Method2 are called
        func -= new Delegate_Multicast(Method1);
        func(2,3);             // Only Method2 is called
    }
}

Explanation

In the above example, you can see that two methods are defined named method1 and method2 which take two integer parameters and return type as void.

In the main method, the Delegate object is created using the following statement:

C#
Delegate_Multicast func = new Delegate_Multicast(Method1);

Then the Delegate is added using the += operator and removed using the -= operator.

Conclusion

This article would help to understand delegates in C# using simple examples. If you have any query regarding this article, you can reach me at arul_tony@yahoo.com.

History

  • 16th September, 2005: Initial post

License

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


Written By
Web Developer
India India
Working as a Software Engineer in a MNC Company.Knowledge on C#.NET, ASP.NET, VB.NET ,VB & SQL Server.

Comments and Discussions

 
GeneralMy vote of 3 Pin
Jorge Altamirano27-Jun-13 14:58
Jorge Altamirano27-Jun-13 14:58 
QuestionNice Pin
TG.SubashKumar7-Jun-13 3:11
TG.SubashKumar7-Jun-13 3:11 
AnswerRe: Nice Pin
Atul Khanduri3-Dec-13 10:08
Atul Khanduri3-Dec-13 10:08 
GeneralMy vote of 5 Pin
John Bracey6-Jun-13 10:07
John Bracey6-Jun-13 10:07 
GeneralGood one for startup.... Pin
deepakkarma13-May-13 0:14
deepakkarma13-May-13 0:14 
QuestionNice Pin
KalaiselvanIT10-Apr-13 0:46
KalaiselvanIT10-Apr-13 0:46 
AnswerRe: Nice Pin
Atul Khanduri3-Dec-13 10:10
Atul Khanduri3-Dec-13 10:10 
GeneralMy vote of 3 Pin
Shantanu Vyavahare5-Apr-13 1:02
Shantanu Vyavahare5-Apr-13 1:02 
SuggestionBasics Of Delegates Pin
rajeev tapadar25-Mar-13 6:20
rajeev tapadar25-Mar-13 6:20 
GeneralRe: Basics Of Delegates Pin
Atul Khanduri3-Dec-13 6:51
Atul Khanduri3-Dec-13 6:51 
GeneralMy vote of 5 Pin
symonsarwar21-Feb-13 5:55
symonsarwar21-Feb-13 5:55 
GeneralMy vote of 4 Pin
Dileep Mada6-Feb-13 20:20
professionalDileep Mada6-Feb-13 20:20 
QuestionMulticast Delegate Pin
Ranjan Kumar Yadav25-Jan-13 7:03
Ranjan Kumar Yadav25-Jan-13 7:03 
AnswerRe: Multicast Delegate Pin
Atul Khanduri3-Dec-13 10:40
Atul Khanduri3-Dec-13 10:40 
GeneralMy vote of 5 Pin
PraveenKumarReddyChinta7-Jan-13 22:25
PraveenKumarReddyChinta7-Jan-13 22:25 
QuestionMulticast delegates must contain only methods that return void, else there is a run-time exception. Pin
Wisen Technologies3-Jan-13 21:03
Wisen Technologies3-Jan-13 21:03 
GeneralMy vote of 4 Pin
Adarsh Chaurasia2-Dec-12 19:24
Adarsh Chaurasia2-Dec-12 19:24 
QuestionThanks Pin
umang_soni0126-Nov-12 22:56
umang_soni0126-Nov-12 22:56 
AnswerRe: Thanks Pin
Atul Khanduri3-Dec-13 10:08
Atul Khanduri3-Dec-13 10:08 
GeneralMy vote of 5 Pin
VikZ917-Nov-12 15:43
VikZ917-Nov-12 15:43 
GeneralMy vote of 3 Pin
kiransolkar30-Sep-12 23:48
kiransolkar30-Sep-12 23:48 
GeneralMy vote of 3 Pin
kiransolkar30-Sep-12 23:48
kiransolkar30-Sep-12 23:48 
GeneralMy vote of 5 Pin
Lee Venkatsamy13-Sep-12 11:52
Lee Venkatsamy13-Sep-12 11:52 
GeneralMy vote of 4 Pin
elaangovan19-Jul-12 1:21
elaangovan19-Jul-12 1:21 
GeneralVery good Pin
ambiste15-Jul-12 7:48
ambiste15-Jul-12 7:48 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.