Loops
As in the previous versions of the language, Visual Basic 2015 offers two kinds of loops: Do..Loop
and While..End While
. This section describes them both.
Do..Loop
The Do..Loop
is the most frequently used loop in Visual Basic, and it’s also the most flexible. This loop can have two behaviors: repeating a set of actions until a condition is false and repeating a set of actions until a condition is true. The first scenario is accomplished by using a Do While
statement, as demonstrated in Listing 4.3.
Sub LoopWhileDemo() Dim max As Integer = 0 Do While max < Integer.MaxValue max += 1 'Do something else here If max = 7000000 Then Exit Do
Get Visual Basic 2015 Unleashed now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.