Stop Command in Debug : Debug « Development « VB.Net






Stop Command in Debug

Stop Command in Debug
Imports System
Imports System.Diagnostics


Public Class MainClass
    Shared Sub Main()

        Dim arr(99) As Integer
        For i As Integer = 0 To 99
            arr(i) = i * i
            Console.WriteLine(arr(i))
            Stop
        Next i


    End Sub

End Class

           
       








Related examples in the same category