I want to make a multidemesional array of jagged arrays. Is this possible? How?
For Instance I see lokts of examples like the following:
int[][,] jaggedArray4 = new int[3][,]
I want to create the following:
int[,,][] myFixedJagged = new int[2,2,3][]
where the last [] is Jagged. How can I declare that?
Thanks!