To find the rank of an array, use the Rank property.
Firstly, declare and initialize an array.
int[,] myArr = new int[3,3];
Now, get the rank.
myArr.Rank
Let us see the complete code −
Example
using System;
class Demo {
static void Main() {
int[,] myArr = new int[3,3];
Console.WriteLine("Rank of Array : " + myArr.Rank);
}
}Output
Rank of Array : 2