Hi there, i can initialize a two dimensional array:
- int[,] myDimensional2 = new int[2, 3] { { 10, 20, 30 }, { 40, 50, 60} };
but i don't know how i can initialize a three, four,... dimensional arrays? :(
please initialize this array and give me the code, thank you so much :)
- int[,,] threeDimensional = new int[2, 2, 3];