<< Click to Display Table of Contents >> Delegate - simples |
![]() ![]() ![]() |
public delegate void SimpleDelegate();
class Program
{
public static void MyFunc()
{
Console.WriteLine("I was called by delegate ...");
}
public static void Main()
{
// Instantiation
SimpleDelegate simpleDelegate = new SimpleDelegate(MyFunc);
// Invocation
simpleDelegate();
}
}