View Single Post
Old 01-20-2009, 01:45 PM  
polle54
Confirmed User
 
Join Date: Jul 2004
Location: The Beach
Posts: 4,626
Quote:
Originally Posted by Sosa View Post
Congrats now code me an app
thanks and here you go:
C#

Code:
public class MetaMan
{
 public ValueOfAction OpenMouth()
 {
    return ValueOfAction.None;
 }

 public List<ValueOfAction> CloseMouth()
 {
    List<ValueOfAction> returnlist = new List<ValueOfAction>();
    returnlist.Add(ValueOfAction.Relief);
    returnlist.Add(ValueOfAction.BetterWorld);

    return returnlist;
 }
}

public Enum ValueOfAction
{
   None,
   Relief,
   BetterWorld
}
__________________
ICQ# 143561781
polle54 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote