In Python, there is this useful exception handling code:
try: # Code that could raise an exception except Exception: # Exception handling else: # Cod
This will might get downvoted but doesn't c# have goto(note I have almost no c# knowledge so I have no idea if this works).
what about something like
try { ... } catch(Exception ex) { ... goto Jump_past_tryelse } ...//Code to execute if the try block DID NOT fail Jump_past_tryelse: ...