Demonstrating the Do/Loop While repetition structure. : Do Loop While « Statements « VB.Net Tutorial






Module Tester

    Sub Main()
        Dim counter As Integer = 1

        Do
            Console.Write(counter & " ")
            counter += 1
      Loop While counter <= 5

    End Sub

End Module
1 2 3 4 5








4.10.Do Loop While
4.10.1.Demonstrating the Do/Loop While repetition structure.