控制台中的简单菜单,具有try and catch功能

时间:2019-07-11 12:40:24

标签: c# menu try-catch

我一直在寻找如何创建一个简单的菜单,该菜单显示用户输入的数字。另外,我想捕获任何非数字输入并编写错误消息。 我想做的另一件事是让控制台仅在显示输出后,当用户按下任何键时退出。

在我的情况下,我没有任何错误,但是控制台只是关闭了。我尝试使用Console.Read();,但并没有阻止它退出。

到目前为止,这是我的代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace MenuTest2
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Choose an option:");
            Console.WriteLine(" 1. Write Hello");
            Console.WriteLine(" 2. Write jacob");
            int choice = Console.Read();
            try
            {
                switch (choice)
                {
                    case 1:
                        Console.WriteLine("Case 1");
                        Console.ReadLine();
                        break;
                    case 2:
                        Console.WriteLine("Case 2");
                        break;
                    default:
                        Console.WriteLine("Null");
                        break;
                }
            }
            catch (FormatException)
            {
                Console.WriteLine("{0} is not an integer", choice);
            }
            finally
            {
                Console.WriteLine("Press enter to close...");
                Console.ReadLine();
            }
        }
    }
}

2 个答案:

答案 0 :(得分:0)

我建议您在选择ReadLine()时使用Read()而不是choice。然后使用int将其转换为Convert.ToInt32(choice),并在try catch中捕获它。

答案 1 :(得分:0)

控制台读取从您的输入流中获取单个字符并返回int32等效项。因此,我不希望引发异常。正如其他答案所建议的那样,请利用ReadLine()函数,因为这样可以更好地处理

string userInput = Console.ReadLine(); 
if (int.TryParse(userInput, out int choice)) 
{
    switch(choice)
    {
        //etc
    }

}
else 
{
    Console.WriteLine("Invalid - Choice not a numeric response");
}