Get rank of a three-dimensional array in C#


To get the rank of a three-dimensional array, use the Rank property.

Set a three-dimensional array.

int[,,] arr = new int[3,4,5]

Now get the rank.

arr.Rank

Let us see the complete code.

Example

using System;
class Program {
   static void Main() {
      int[,,] arr = new int[3,4,5]
      Console.WriteLine("Dimensions of Array : " + arr.Rank);
   }
}

Updated on: 23-Jun-2020

81 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements