Pass Array as Parameters : Function Parameter « Language Basics « VB.Net






Pass Array as Parameters

Pass Array as Parameters
Imports System

Public Class MainClass

    Shared Sub Main(ByVal args As String())
        Dim friends() As String = {"A", "B", "C","D", "E"}


        AddFriendsToList(friends)
    End Sub
    
    Shared Sub AddFriendsToList(ByVal friends() As String)
        Dim friendName As String
        
        For Each friendName In friends
            Console.WriteLine("[" & friendName & "]")
        Next
    End Sub

End Class

           
       








Related examples in the same category

1.Use Array as Function ParameterUse Array as Function Parameter
2.Calculates the power of a value, defaults to squareCalculates the power of a value, defaults to square
3.Two Dimension Array: Pass into a FunctionTwo Dimension Array: Pass into a Function