namespace myfunnydelegate
public delegate void myDeleg();
public static event myDeleg callme;
public static event myDeleg nothing;
static void Main(string[] args)
public static void EventTester(int a )
public static void ShowMessage()
Console.WriteLine("working!");
public static void ShowMessage2()
Console.WriteLine("working twice!");
public static void ShowMessage3()
Console.WriteLine("nothing happened");