标签:
class Program { static void Main() { EventHandler handler; handler = delegate { Console.WriteLine("Handled anonymously"); }; handler(null, EventArgs.Empty); Console.ReadKey(); } }
委托的另一种写法
原文地址:http://www.cnblogs.com/xushining/p/5767603.html