2020 - Validation on entering text instead of numerical values

From TRCCompSci - AQA Computer Science
Revision as of 16:38, 9 December 2019 by 000029897 (talk | contribs) (Created page with "<syntaxhighlight lang=csharp> while (true) { Console.Write("Enter X coordinate for new outlet: "); try...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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");
                    }
                }