Following is the two dimensional array with 2 rows and 3 columns.
int[,] ar = new int[2,3];
Example for three dimensional array is
int[,,] ar = new int[2,3,2];
Please tell me what is the name of third one. Also tell me how to name if it is go like this.
int[,,] ar = new int[row, column, ?????];
Loading
VulpesPosted Mar 23, 2013, 7:23 AM
For a three dimensional array, you sometimes see the terms row, column and layer used for the three dimensions as these are the terms used for a 3D matrix.
Check this link:
http://www.soest.hawaii.edu/martel/Courses/GG250/gg250_lab_10_ppt.pdf
Posted Mar 23, 2013, 7:42 AM