G Guest Aug 5, 2005 #1 hey all, i was wondering what the best way to get my 2 arrays into 1 single array. Thanks, rodchar
H Herfried K. Wagner [MVP] Aug 5, 2005 #2 rodchar said: i was wondering what the best way to get my 2 arrays into 1 single array. Click to expand... Create a new array of appropriate size and use 'Buffer.BlockCopy'/'Array.Copy'/'Array.CopyTo' to copy the data of the two arrays into the new array.
rodchar said: i was wondering what the best way to get my 2 arrays into 1 single array. Click to expand... Create a new array of appropriate size and use 'Buffer.BlockCopy'/'Array.Copy'/'Array.CopyTo' to copy the data of the two arrays into the new array.
G Guest Aug 8, 2005 #3 thank you. Herfried K. Wagner said: Create a new array of appropriate size and use 'Buffer.BlockCopy'/'Array.Copy'/'Array.CopyTo' to copy the data of the two arrays into the new array. Click to expand...
thank you. Herfried K. Wagner said: Create a new array of appropriate size and use 'Buffer.BlockCopy'/'Array.Copy'/'Array.CopyTo' to copy the data of the two arrays into the new array. Click to expand...