Difference between revisions of "2020 - Validation on entering text instead of numerical values"

From TRCCompSci - AQA Computer Science
Jump to: navigation, search
(Created page with "<syntaxhighlight lang=csharp> while (true) { Console.Write("Enter X coordinate for new outlet: "); try...")
(No difference)

Revision as of 16:38, 9 December 2019

                
while (true)
                {
                    Console.Write("Enter X coordinate for new outlet: ");
                    try
                    {
                        x = Convert.ToInt32(Console.ReadLine());
                        break;
                    }
                    catch
                    {
                        Console.WriteLine("invalid data");
                    }
                }