Example #1
0
 static void Main(string[] args)
 {
     //Sample
     Potato potato = new Potato();
     //... 
     if (potato != null)
     {
         if (!potato.IsRotten && !potato.HasNotBeenPeeled)// Rotten check befoure Peeled check.
         {
             Cook(potato);
         }
     }
 }
Example #2
0
 static void Cook(Potato potato)
 {
     //TODO:
 }