CONTINUE

CONTINUE

Jumps to the next occurrence of a loop. Opposite of BREAK.

Examples

For I As Integer = 1 To 10

  If I = 1 Then
    Print "One ";
    Continue
  Endif

  If I = 2 Then
    Print "Two ";
    Continue
  Endif

  Print I;;

Next
One Two 3 4 5 6 7 8 9 10

See also