Я хотел бы l oop метод, пока метод не возвращает целое число в C#.
public static int isAnInt()
{
rQuit = Console.ReadLine();
if (Int32.TryParse(rQuit, out isQuit) == false)
{
Console.WriteLine("Enter value again but as a number");
}
return isQuit;
}
// Пока внутри основного метода /
while (int.TryParse(isAnInt() , out isQuit ) == false)
{
Console.WriteLine("This method is not an int try insert an int"); // For the method isAntInt I am trying to only
//loop the method as
// long as it is not an integer.
}