why use delegates c# definition code example
Example 1: what are delegates and how to use them c#
public delegate void MyDelegate(string text);
Example 2: what are delegates and how to use them c#
MyDelegate d = new MyDelegate(ShowText);
Example 3: what are delegates and how to use them c#
delegate result-type identifier ([parameters])