コード例 #1
0
 public static void printInfo(Coffee c)
 {
     Debug.WriteLine("Cost: " + c.getCost() + "; Ingredients: " + c.getIngredients());
 }
コード例 #2
0
ファイル: DecoratorWiki2.cs プロジェクト: Stone1231/cs-sample
 public override double getCost()
 { // Implementing methods of the interface
     return(decoratedCoffee.getCost());
 }