Код: Выделить всё
int [,] ary;
// ...
int nArea = ary.Length; // x*y or total area
Как я могу получить эту информацию?
Подробнее здесь: https://stackoverflow.com/questions/426 ... onal-array
Код: Выделить всё
int [,] ary;
// ...
int nArea = ary.Length; // x*y or total area