I have a data object
I also have arrays of these data objects
I want to put these arrays of data objects into another array
Dim ArrayOfDataObjects1(10) as new DataObject
Dim ArrayOfDataObjects2(10) as new DataObject
Dim ArrayOfDataObjects3(10) as new DataObject
'Now, I want to put all of these into another array, how can I?
Thanks!
edit: I know I need to create another array with size 3, but what type do I define the array as?