Use For Each to Loop an Array : For Each « Language Basics « VB.Net






Use For Each to Loop an Array

Use For Each to Loop an Array
Imports System

Public Class MainClass

    Shared Sub Main(ByVal args As String())

        Dim friends() As String = {"A", "B", "C","D", "E"}


        Dim friendName As String
        For Each friendName In friends

            Console.WriteLine(friendName)

        Next
    End Sub
    

End Class

           
       








Related examples in the same category

1.Exit a For Each loopExit a For Each loop
2.Loop through an ArrayLoop through an Array