C# Action Delegate example

PHOTO EMBED

Sat May 11 2024 19:12:17 GMT+0000 (Coordinated Universal Time)

Saved by @destinyChuck #html #css #javascript

public delegate void Print(int val);

static void ConsolePrint(int i)
{
    Console.WriteLine(i);
}

static void Main(string[] args)
{           
    Print prnt = ConsolePrint;
    prnt(10);
}
content_copyCOPY

Example of a Delegate; specifically an "Action" delegate in C#. The other type of delegate being a "Func" delegate.

https://www.tutorialsteacher.com/csharp/csharp-action-delegate