示例#1
0
        static void Main(string[] args)
        {
            delehello delH = hello;
            delehello delG = goodbye;

            delehello delX = delH + delG + delH + delG;

            delX("ha ha ha .");
        }
示例#2
0
        static void Main(string[] args)
        {
            delehello delH = hello;

            delH();
        }
示例#3
0
        static void Main(string[] args)
        {
            delehello delH = hello;

            delH(); Console.ReadKey();
        }