コード例 #1
0
 public static void printInfo(Coffee c)
 {
     Debug.WriteLine("Cost: " + c.getCost() + "; Ingredients: " + c.getIngredients());
 }
コード例 #2
0
ファイル: DecoratorWiki2.cs プロジェクト: Stone1231/cs-sample
 public WithMilk(Coffee c) : base(c)
 {
     //super(c);
 }
コード例 #3
0
ファイル: DecoratorWiki2.cs プロジェクト: Stone1231/cs-sample
 public WithSprinkles(Coffee c) : base(c)
 {
     //super(c);
 }
コード例 #4
0
ファイル: DecoratorWiki2.cs プロジェクト: Stone1231/cs-sample
 public CoffeeDecorator(Coffee c)
 {
     this.decoratedCoffee = c;
 }