Hi,
How do you declare a "deep" array in C#?
I would like to have a int array like: [ 1, 4, 5, 6, [3, 5, 6, 7, 9], 1, 4, 234, 2, 1,2,4,6,67, [1,2,4,44,56,7] ]
I've done this before, but can't remember the right syntax. But it was something a like what is written below: Int32[] MyDeepArray = new Int32[] = {3, 2, 1, 5, {1, 3, 4, 5}, 1, 4, 5};
And how do I iterate it correctly.. How do I check that an array is an array?
Thanks!