Esempio n. 1
0
        private static bool List(string[] fields)
        {
            if (fields[0] != "list")
            {
                return(false);
            }

            Console.WriteLine("Ingredients are: ");
            Console.Write(shoppingList.ToString());
            return(true);
        }