i have a integer input that the user supposed to enter. how can i protect my program from input of 01 instead of 1. my input is integer !
choice = int.Parse(Console.ReadLine());
if (choice < 1 || choice > 3)
{
v = true;
Console.WriteLine("Please enter number between 1 - 3: ");
}