Multitasking of delegates is very useful property of delegates , you can create invocation list of methods that will be called a delegate is invoked. Show in the example.
Example
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
delegate int change_number(int i); //create delegate change number
namespace using_multicasting_delegates_in_c_Sharp
{
class TestDelegate //create class test delegate
{
static int number = 15; //static number declare
public static int Add(int k) //create static function add
{
number += k;
return number;
}


Join the conversation! Your thoughts help the community grow.