In C# , the Rank property of the array is is used to get the rank of the array. In simple terms , rank refers to the number of dimensions of the array.
How to use array Rank in C# ?
You can get the number of dimensions of the array using the Rank property of the array. For instance , the Rank property of the 1-D array results in the value 1 whereas the 2-D array results in the rank value of 2.
Here’s a code snippet on how to use the Rank property to get the dimensions of the array.
using System;
namespace ACConsoleApp1
{
class Program
{
static void Main(string[] args)
{
int[] inputArray1 = new int[6];
int[,] inputArray2 = new int[3, 3];
Console.WriteLine("inputArray1 is of dimension " + inputArray1.Rank);
Console.WriteLine("inputArray2 is of dimension " + inputArray2.Rank);
Console.ReadLine();
}
}
}
Leave a Reply