Code:
using System;
delegate void dele1();
public class Delegateintro
{
static void Main()
{
dele1 del = new dele1(Write);
del();
}
static void Write()
{
Console.WriteLine("Calling Write ");
}
}
Output:
Calling Write
More C# Programs:
Best gifts for Christmas Day | Greeting cards for Christmas Day | Gift your children a new gift on Christmas day This Christmas d...