00001 using System; 00002 using System.Collections.Generic; 00003 using System.Text; 00004 00005 namespace Shared 00006 { 00010 class Coffee 00011 { 00017 public Coffee( BrewStrength strength, double amount ) 00018 { 00019 // MessageBox.Show("Here you have yourself a nice " + amount.ToString() + " liters of " + strength.ToString() + " strength coffee!"); 00020 } 00021 00025 public enum BrewStrength 00026 { 00027 Andy, 00028 Weak, 00029 Medium, 00030 Strong, 00031 Geek 00032 } 00033 } 00034 }
1.5.1-p1