Head First C# Code: Chapter 15
Objectville Promotion
Drink.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace _5_Objectville_Promotion
{
public enum Drink
{
BoringCoffee, ChocoRockoLatte, TripleEspresso,
ZestyLemonChai, DoubleCappuccino, HalfCafAmericano,
ChocoMacchiato, BananaSplitInACup,
}
}







