February 24, 2019

Srikaanth

Write a C# Program to Declare and Instantiate Delegates

Write a C# Program to Declare and Instantiate Delegates:

This C# Program to Declare and Instantiate Delegates. Here Delegates are often used to implement callbacks and event listeners.

Here is source code of the C# Program to Declare and Instantiate Delegates. The C# program is successfully compiled and executed with Microsoft Visual Studio. The program output is also shown below.

ANS: 

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.

Subscribe to get more Posts :