How to find the Rank of a given Array in C#?



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

 Live Demo

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
karthikeya Boyini
karthikeya Boyini

I love programming (: That's all I know


Advertisements