예제 #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);
 }