RosettaCodeData/Task/Flow-control-structures/Visual-Basic-.NET/flow-control-structures-2.vb

8 lines
150 B
VB.net
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
Sub foo()
On Error GoTo label
'do something dangerous
Exit Sub
label:
Console.WriteLine("Operation Failed")
End Sub