Ok, I just had the same problem in Python, and I know I always used to mix this in C++ and C# too, so it is probably much simpler then it looks like right now.

What I want to know is the syntax to first make a 2D array. Then I want to make a an other one dimensional array, and make one of the elements in the first one point to the other array, something like:

my2DArray[2,2] = my1DArray;
my2DArray[2,3] = anOther1DArrray;


is this doable....if so, how? Jagged array or?

- ØØ -