What is Multicast Delegate? Explain it with example in C#?

Delegates are used to wrap and execute methods having the same signature as that of the delegate. They wrap method calls and prevent exposing the actual method name to the User.


Delegates have a very special feature which supports execution of multiple methods using a single delegate call. This is known as multicast delegate.

For a delegate you can define an invocation list and while calling the delegate, all the methods in its invocation list will be executed. You can add methods to the invocation list using += operator. You can also remove methods from the list using -= operator. The following example demonstrates usage of multicast delegate in C# by creating a delegate and executing two different methods using the same delegate:

public delegate void sampleDelegate(int data);
public class testDelegate {
public void checkEven(int data) {
if(data%2 ==0) {
Console.WriteLine(“This number is an even number”);
}
}
public void squareNumber(int data) {
Console.WriteLine(“Square of this number is: {0}”, data*data);
}
}
class testClass {
public static void Main( ) {
testDelegate obj = new testDelegate();
sampleDelegate delegateObj = new sampleDelegate(obj.checkEven);
delegateObj += new sampleDelegate(obj.squareNumber);
delegateObj(20);
}
}

Output of this code will be:

This number is an even number
Square of this number is: 400

| Can you call a constructor from another constructor of the Class in .NET? | Difference between Response.Output.Write() method and Response.Write() method in .NET | How do you establish multiple inheritance in C#? | How do you introduce a ReadOnly property in C#? | How do you perform constructor overloading in C#? | Is catch(Exception) recommended to be used in .NET? | What are the different access modifiers available in C#? | What are the different ways of overloading in C#? | What are the members of stringbuilder class in C#? | What is Multicast Delegate? Explain it with example in C# | What is the difference between abstract class and interface in .NET? | What is the difference between Clone and CopyTo methods in .NET | What is the difference between const and readonly in .NET | What is the difference between directcast and ctype in .NET? | What is the difference between out and ref parameters in .NET | What is the difference between public assembly and private assembly in .NET | What is the difference between strong typing and weak typing in .NET? | What is the difference between Trace and Debug in .NET | What is the need for Abstract Factory Pattern in C#? | What is the need for Adapter Pattern in C# |


“Amazon and the Amazon logo are trademarks of Amazon.com, Inc. or its affiliates.”

| Privacy Policy for www.dotnet-guide.com | Disclosure | Contact |

Copyright - © 2004 - 2024 - All Rights Reserved.