How do you declare a "deep" array in C #?
I would like to have an int array, for example: [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 have done this before but cannot remember the correct syntax. But it was like what is written below: Int32 [] MyDeepArray = new Int32 [] = {3, 2, 1, 5, {1, 3, 4, 5}, 1, 4, 5};
And how to do it right? .. How to check that an array is an array?
Thanks!