Array question

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

Guest

Hey all,

How can I take 4 individual arrays and put it into 1 big array?

thanks,
rodchar
 
rodchar said:
How can I take 4 individual arrays and put it into 1 big array?

Do you want to create an array of arrays? If yes, take a look at the
chapter about "Jagged Arrays" in the documentation.

If you want to put the data in one array, take a look at
'Array.Copy'/'Array.CopyTo'.
 
I want to take 4 1-dimensional arrays (contains 2 elements each) and make a
table out of it. I gues it would be a 2x4 array or I might just create a data
table and add the arrays in that way.

Any ideas?
 

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

2 arrays into 1 2
database records into an array 2
array in dataset 4
An array and a datagrid 9
arrays of integers 5
I thought it was an easy question 7
array bound listbox 2
Shape Arrays VBA 0

Back
Top