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); } } }
static void Cook(Potato potato) { //TODO: }