class Program
    {
        static void Main()
        {
            EventHandler handler;

            handler = delegate { Console.WriteLine("Handled anonymously"); };

            handler(null, EventArgs.Empty);

            Console.ReadKey();
        }
    }

 

posted on 2016-08-13 11:14  小小乌龟把头藏  阅读(148)  评论(0编辑  收藏  举报