コード例 #1
0
ファイル: Program.cs プロジェクト: jbijoux/Exam70_483
        static void Main(string[] args)
        {
            Base b = new Base();
            b.Execute();
            b = new Derived();
            b.Execute();

            Console.Write("Press a key to exit");
            Console.ReadKey();
        }
コード例 #2
0
ファイル: Program.cs プロジェクト: mstaessen/examprep-70_483
        static void Main(string[] args)
        {
            Base b = new Base();
            b.Execute();
            b = new Derived();
            b.Execute();

            Derived d = new Derived();
            d.Execute();

            Console.ReadKey();
        }