2 arrays into 1

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

hey all,

i was wondering what the best way to get my 2 arrays into 1 single array.

Thanks,
rodchar
 
rodchar said:
i was wondering what the best way to get my 2 arrays into 1 single array.

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.
 
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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

database records into an array 2
array in dataset 4
Array question 3
An array and a datagrid 9
arrays of integers 5
Shape Arrays VBA 0
array bound listbox 2
highest value in a an array 3

Back
Top