예제 #1
0
파일: Program.cs 프로젝트: ErhanGDC/MyWorks
        static void Main(string[] args)
        {
            Base1 b = new Base1();

            b.Execute();
            b = new Derived1();
            b.Execute();
        }