John wrote:
Hi
Is there a way to merge two or more single dimension string arrays into a
single, single dimension string array?
Thanks
Regards
Create a new array with the combined size of the arrays, and copy the
elements from the arrays:
Dim newArray As String() = New String(oldArray1.Length + oldArray2.Length)
oldArray1.CopyTo(newArray, 0)
oldArray2.CopyTo(newArray, oldArray1.Length)
--
Göran Andersson
_____
http://www.guffa.com