Understanding passing arrays by reference

Understanding passing arrays by reference

.NET arrays are object types, thus an array variable is actually a pointer to the object where data is actually stored. For this reason, when you pass an array to a procedure the pointer is passed and the called procedure is always able to modify the elements of the array, regardless of whether the array has been passed by reference or by value. Apparently, there is no difference between passing an array with ByVal or ByRef.

The only case when you see a difference is if the called procedure REDIMs the array. If the array has been passed by reference, the original array is modified; if the array has been passed by value, a new array is created and the original array isn’t modified. Even more important, assignments to the elements of this new array don’t affect the original array in any way. This code makes the concept clear:

Sub Main()    ' create three identical arrays    Dim a() As Integer = {0, 1, 2}    Dim b() As Integer = {0, 1, 2}    Dim c() As Integer = {0, 1, 2}    ' pass them by value and by reference to a procedure    DoIt(a, b, c)    ' prove that assign to elements of arrays passed by value    ' affect the original array    Console.WriteLine(a(0))       ' => 999    ' prove that ReDim has no effect on arrays passed by value    Console.WriteLine(b.Length)   ' => 3    ' prove that ReDim affect arrays passed by reference    Console.WriteLine(c.Length)   ' => 101End SubSub DoIt(ByVal a() As Integer, ByVal b() As Integer, ByRef c() As Integer)    ' prove that assign to elements of arrays passed by value    ' affect the original array    a(0) = 999    ' prove that ReDim has no effect on arrays passed by value    ReDim b(100)    ' prove that ReDim affect arrays passed by reference    ReDim c(100)End Sub

Share the Post:
Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular

XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved

AI is revolutionizing fraud detection

How AI is Revolutionizing Fraud Detection

Artificial intelligence – commonly known as AI – means a form of technology with multiple uses. As a result, it has become extremely valuable to a number of businesses across

AI innovation

Companies Leading AI Innovation in 2023

Artificial intelligence (AI) has been transforming industries and revolutionizing business operations. AI’s potential to enhance efficiency and productivity has become crucial to many businesses. As we move into 2023, several

data fivetran pricing

Fivetran Pricing Explained

One of the biggest trends of the 21st century is the massive surge in analytics. Analytics is the process of utilizing data to drive future decision-making. With so much of

kubernetes logging

Kubernetes Logging: What You Need to Know

Kubernetes from Google is one of the most popular open-source and free container management solutions made to make managing and deploying applications easier. It has a solid architecture that makes