programming-examples/c-sharp/Delegates/C# Program to Declare and Instantiate Delegates..txt

17 lines
312 B
Plaintext
Raw Normal View History

2019-11-15 12:59:38 +01:00
/*
* C# Program to Declare and Instantiate Delegates
*/
using System;
delegate void dele1();
public class Delegateintro
{
static void Main()
{
dele1 del = new dele1(Write);
del();
}
static void Write()
{
Console.WriteLine("Calling Write ");
}
}