The GetLength gets a 32-bit integer that represents the number of elements in the specified dimension of the Array.
First, set the array.
int[,] arr = new int[20, 30];
For a specified dimension of the array, set the index in the GetLength() method like −
Arr.GetLength(1);
Example
using System;
class Program {
static void Main() {
int[,] arr = new int[20, 30];
int len = arr.GetLength(1);
Console.WriteLine(len);
}
}Output
30