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
You use Array.GetLength with the index of the dimension you wish to retrieve.