|
|
|
.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: |
Click here to copy the following block | Sub Main() Dim a() As Integer = {0, 1, 2} Dim b() As Integer = {0, 1, 2} Dim c() As Integer = {0, 1, 2} DoIt(a, b, c)
Console.WriteLine(a(0)) Console.WriteLine(b.Length) Console.WriteLine(c.Length) End Sub
Sub DoIt(ByVal a() As Integer, ByVal b() As Integer, ByRef c() As Integer) a(0) = 999 ReDim b(100) ReDim c(100) End Sub |
|
|
|
Submitted By :
Nayan Patel
(Member Since : 5/26/2004 12:23:06 PM)
|
|
|
Job Description :
He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting. |
View all (893) submissions by this author
(Birth Date : 7/14/1981 ) |
|
|