What has replaced CopyArray function is Visual Basic Express Beta 2

Apparently, the new version of Visual Basic Express 2005 Beta 2 has removed the CopyArray FunctionWhat has replaced CopyArray ?
[128 byte] By [JuliaQ] at [2007-12-16]
# 1
Tell us what did the CopyArray function did and we will try to find a replacement.
DavidM.Kean at 2007-9-9 > top of Msdn Tech,Visual Basic,Visual Basic General...
# 2
CopyArray transferred all the data from one array into another array. The arrays had to be similarly dimensioned and typed.

Is there any way to download the OLD Visual Express 2005 Beta 2 from the October 2004 time frame? I can't get the latest beta 2 to work properly and lots of code needs to be changed to migrate from OLD BETA 2 to current Beta 2.

JuliaQ at 2007-9-9 > top of Msdn Tech,Visual Basic,Visual Basic General...
# 3

Dim Arr1 As String()

Dim Arr2 As String()

ReDim Arr1(1)

Arr1(0) = "Hi"

Arr1(1) = "There"

Arr2 = Arr1.Clone

MsgBox(Arr2(0) & " " & Arr2(1))

Dustin_H at 2007-9-9 > top of Msdn Tech,Visual Basic,Visual Basic General...
# 4
Look at the Array.Copy and Array.CopyTo methods.
DavidM.Kean at 2007-9-9 > top of Msdn Tech,Visual Basic,Visual Basic General...