VB_0004_ForNext2



Module Module1

    Sub Main()

        For x = 10 To 5 Step -1
            Console.WriteLine(x)

        Next
        Console.ReadLine()

    End Sub

End Module

Comments

Popular posts from this blog

VB_0002_Variable3