C# How to loop user input until the datatype of the input is correct?

前端 未结 4 1533
春和景丽
春和景丽 2020-12-03 16:34

How to make this piece of code loop asking for input from the user until int.TryParse()

is successful?

//setX
    public void setX()
    {
          


        
4条回答
  •  庸人自扰
    2020-12-03 17:04

    while (!int.TryParse(Console.ReadLine(), out mynum))
        Console.WriteLine("Try again");
    

    edit:

    public void setX() {
        Console.Write("Enter a value for X (int): ");
        while (!int.TryParse(Console.ReadLine(), out x))
            Console.Write("The value must be of integer type, try again: ");
    }
    

    Try this. I personally prefer to use while, but do .. while is also valid solution. The thing is that I don't really want to print error message before any input. However while has also problem with more complicated input that can't be pushed into one line. It really depends on what exactly you need. In some cases I'd even recommend to use goto even tho some people would probably track me down and slap me with a fish because of it.

提交回复
热议问题