|
TO:
The type int [] [,,] [,] is a single-dimensional array type, the element type is a three-dimensional array type, the element type of the three-dimensional array type is a two-dimensional array type, and the element type of the two-dimensional array type is an int type
int [,] is a two-dimensional array, and the elements are of type int, no problem ..
int [,,] [,] is a three-dimensional array, but its elements are two-dimensional arrays. Separately, each element in int [,,] is a two-dimensional array (int [,])
The type int [] [,,] [,] is a one-dimensional array, but the elements are three-dimensional arrays int [,,] [,]
I don't know if you can understand this explanation? |
|