VB.NET While Loop - C# Tutorial: Dot Net Perls
VB.NET program that uses While-loop Module Module1 Sub Main() Dim i As Integer = 0 While i < 100 Console.WriteLine(i) i += 10 End While End Sub End Module Output 0 10 20 30 40 50 60 70 80 90 Discussion. The VB.NET language also provides the Do While ......