

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to define the rank of an array in C#?
To find the number of dimensions of an array, use the Array Rank property. This is how you can define it −
arr.Rank
Here, arr is our array −
int[,] arr = new int[3,4];
If you want to get the rows and columns it has, then uses the GetLength property −
arr.GetLength(0); arr.GetLength(1);
The following is the complete code −
Example
using System; class Program { static void Main() { int[,] arr = new int[3,4]; Console.WriteLine(arr.GetLength(0)); Console.WriteLine(arr.GetLength(1)); // Length Console.WriteLine(arr.Length); Console.WriteLine("Dimensions of Array : " + arr.Rank); } }
Output
3 4 12 Dimensions of Array : 2
- Related Questions & Answers
- How to define an array in C#?
- Rank of All Elements in an Array using C++
- How to define an array class in C#?
- How to find the Rank of a given Array in C#?
- How to find the length and rank of a jagged array in C#?
- How to define an array size in java without hardcoding?
- How to find the rank of a matrix in R?
- How to get the rank of a matrix in PyTorch?
- Get rank of a three-dimensional array in C#
- Applying rank filter to an image using the Pillow library
- How to define a rectangular array in C#?
- How to define an Arrow Function in JavaScript?
- Define financial objectives of an organisations.
- How to find percentile rank for groups in an R data frame?
- How to define methods for an Object in JavaScript?
Advertisements