Take the following code:
Public Sub new(a As String)
a = "1" '<- I have a breakpoint here
Select Case a '<- I want to set the execution to this line, skipping the execution of the previous line
Case "1": WriteLn("a=1")
Case Else: WriteLn("")
End Select
End Sub
This results in: