You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
312 B
Plaintext

/*
* 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 ");
}
}