how to get width and height of a 2d array c# code example
Example: c# length 2d array
int rowsOrHeight = ary.GetLength(0);
int colsOrWidth = ary.GetLength(1);
int rowsOrHeight = ary.GetLength(0);
int colsOrWidth = ary.GetLength(1);