2020 - Validation on entering text instead of numerical values

From TRCCompSci - AQA Computer Science
Revision as of 16:40, 9 December 2019 by 000029897 (talk | contribs)
Jump to: navigation, search
                
while (true)
{
    Console.Write("Enter X coordinate for new outlet: ");
    try
    {
        x = Convert.ToInt32(Console.ReadLine());
        break;
    }
    catch
    {
         Console.WriteLine("invalid data");
     }
}