public string GetDescription() { return(coffee.GetDescription() + ", " + name); }
public string GetDescription() { return(string.Format("{0}, {1}", _coffee.GetDescription(), _name)); }
public string GetDescription() { return(_baseCoffee.GetDescription() + ", MilkShake"); }