I want to execute the code in the try block again after an exception is caught. Is that possible somehow?
For Eg:
try { //execute some code } catch(E
What's wrong with the ole goto?
goto
Start: try { //try this } catch (Exception) { Thread.Sleep(1000); goto Start; }