I have an array defined:
int [,] ary; // ... int nArea = ary.Length; // x*y or total area
This is all well and good, but I need to know how
Use GetLength(), rather than Length.
int rowsOrHeight = ary.GetLength(0); int colsOrWidth = ary.GetLength(1);