+ 1
C# - Array
What is arr.Rank?
2 Answers
+ 1
Gets the rank (number of dimensions) of the Array.
For example, a one-dimensional array returns 1, a two-dimensional array returns 2, and so on.
https://code.sololearn.com/cv0QHKK5E7LV/#cs
0
Thanks for your answer!