コード例 #1
0
        public void DisplayMenu()
        {
            ConsolHelper.PrintHeader(options);
            Console.WriteLine("Please choose from One of the Options above");
            int choice = ConsolHelper.GetInput1();

            if (choice > 0 && choice < options.Length + 1)
            {
                Choice(choice);
            }
            else
            {
                Console.WriteLine("\t Please Enter from the options Above");
                DisplayMenu();
            }
        }