Exit Do While : Do While « Statements « VB.Net Tutorial






public class Test
   public Shared Sub Main
        Dim j As Integer
        For i As Integer = 1 To 3
            j = 0
            Do While j < 3
                j += 1
                For k As Integer = 1 To 3
                    Dim test1 As Boolean = k = 2
                    If test1 Then Exit For ' Exits the For K loop.

                    Dim test2 As Boolean = i = j
                    If test2 Then Exit Do ' Exits the Do.

                    Console.WriteLine(i & ", " & j & ", " & k)
                Next k
            Loop
        Next i
   End Sub

End class
2, 1, 1
3, 1, 1
3, 2, 1








4.12.Do While
4.12.1.Do While Loop
4.12.2.Do While/Loop: multiplies and displays product while product is less than or equal to 1000
4.12.3.Exit Do While