Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,987 questions

51,931 answers

573 users

How to use ByVal and ByRef in with array VB.NET

1 Answer

0 votes
Module Module1

    Sub Main()

        Dim arr() As Integer = {1, 2, 3, 4, 5}

        ' arrays passed by reference always

        s(arr)
        For Each element As Integer In arr
            Console.Write("{0, 3}", element)
        Next
        Console.WriteLine()

        s_byval(arr)
        For Each element As Integer In arr
            Console.Write("{0, 3}", element)
        Next
        Console.WriteLine()

        s_byref(arr)
        For Each element As Integer In arr
            Console.Write("{0, 3}", element)
        Next

    End Sub

    Sub s(arr() As Integer)
        arr(0) = 111
    End Sub

    Sub s_byval(ByVal arr() As Integer)
        arr(0) = 222
    End Sub

    Sub s_byref(ByRef arr() As Integer)
        arr(0) = 333
    End Sub

End Module

'run:
' 
' 111  2  3  4  5
' 222  2  3  4  5
' 333  2  3  4  5

 



answered Mar 2, 2016 by avibootz

Related questions

...