C# Exception handling
Hvordan laver jeg følgene kode UDEN AT BRUGE GOTOint num;
while (2 > 1)
{
START:
Console.Write("Indtast tal: ");
try
{
num = int.Parse(Console.ReadLine());
}
catch (Exception)
{
Console.WriteLine("Fejl!");
goto START;
}
Console.WriteLine("Dit tal: {0}", num);
}