Delegates
Last updated
Was this helpful?
Was this helpful?
delegate void YOUR_DELEGATE_NAME();YOUR_DELEGATE_NAME del1 = Saladpuk;del1();class Program
{
delegate void YOUR_DELEGATE_NAME();
static void Main(string[] args)
{
YOUR_DELEGATE_NAME del1 = Saladpuk;
del1();
}
static void Saladpuk()
{
Console.WriteLine("Hello world");
}
}