+ 1
int[,,] myarray = new int [3,4,5]
I couldn't understand or missed a point at this topic. This is a multidimensional array, so; 3 is row number, 4 is column number and what is 5?
3 Answers
+ 5
you can think of it as a 3D array - 3 is row, 4 is column and 5 is 'depth' or firther planes consisting of 3rows and 4 columns
0
Hmm i thought similar, thank u.
0
think thats a cube.
other then that you can look at each element in the third dimention as a two dimentional array.