int[, ,] ar = new int[2, 4, 3];
I wish to whether it is correct to say that this array has 2 rows, 4 columns and 3 layers. Is it possible to have more than 3-Dimensional array?
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
VulpesPosted Mar 23, 2013, 10:51 AM
An array can have more than 3 dimensions. However, such arrays are uncommon in practice.
Posted Mar 23, 2013, 11:03 AM