コード例 #1
0
ファイル: Program.cs プロジェクト: rsahi1/CCTB-245
        // This is a "Method Declaration" - It states what the instructions are
        static void DemoPolymorphism()
        {
            Store otherStore = new Store(2, "Future Buy");
               Product myProduct = otherStore.GetProducts(5);
               myProduct.Purchase(); // call the method

               LaptopComputer myMac = new LaptopComputer();
               myMac.Name = "MacBook Pro";
               myMac.Purchase();
        }