FOR....NEXT

It repeats a group of statements a specified number of times and a loop index counts the number of loop iterations as the loop executes.


Syntax:

For counter [ As datatype ] = start To end [ Step step ]

[ statements ]

Next [ counter ]


Example: 

Dim a As Byte

For a = 10 To 20

' Statement to print

Console.WriteLine("value of a: {0}", a)

Next


Last modified: Thursday, 11 July 2019, 11:34 AM