示例#1
0
        static void Main(string[] args)
        {
            Program       p               = new Program();
            HowToSayHello InAsiaMethod    = p.InAsia;
            HowToSayHello InAmericaMethod = p.InAmerica;

            p.PrintMessage(InAsiaMethod);
            p.PrintMessage(InAmericaMethod);
            Console.ReadLine();
        }
示例#2
0
 void PrintMessage(HowToSayHello how)
 {
     Console.WriteLine(how);
 }