コード例 #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
ファイル: Program.cs プロジェクト: OOAD-041/OOAD-WEEK05
        static void Main(string[] args)
        {
            delehello delH = hello;

            delH(); Console.ReadKey();
        }