Ejemplo n.º 1
0
 public static void DoSomething(this IInterface i)
 {
     i.Event += (o, e) => Console.WriteLine("Event raised and handled");
     i.Handler(i, new EventArgs());
 }