예제 #1
0
 public static void Method6_B(SayHello hello)
 {
     hello.Speak();
 }
예제 #2
0
        public static void Method6_A()
        {
            var helloClass = new SayHello("Hello");

            Method6_B(helloClass);
        }