コード例 #1
0
ファイル: Program.cs プロジェクト: BanAnna0/Patterns
        static void Main(string[] args)
        {
            var a = new Coffee();
            var b = new Tea();

            a.prepareRecipe();
            b.prepareRecipe();

            Console.ReadKey();
        }
コード例 #2
0
 public CoffeeWithSugar(Coffee coffee, int sugarQuantity)
     : base(coffee)
 {
     this.sugarQuantity = sugarQuantity;
 }