Do While MyCondition = True
Dim continue As Boolean
In C#, this would look like [b]if (This == "That") continue;[/b]
If This = "That" Then continue = True
This part skips all the code after the continue line, if necessary
If Not continue Then You did not choose to go to the next iteration
Nested continues should work as well.
C#: if (Equation = (4+3/5)^4) continue;
If Equation = (4+3/5)^4 Then continue = True
If Not continue Then
Once again, you didnt choose to go to the next iteration
End If
End If
Loop