ch3p-Soda (a type of Drink)
AppParty Drink | House |
Soda.cs
namespace party.foods
{
class Soda : Drink // Soda is a type of Drink
{
public Soda(string name) : base(name) // call base constructor
{}
override public string ToString()
{
string message = base.ToString(); // name
message += " is refreshing";
return message;
}
}
}
AppParty Drink | BACK_TO_TOP | House |
Comments
Post a Comment