您如何在C#中找到数组的长度?
若要查找数组的长度,请使用Array.Length()方法。
示例
让我们看一个例子-
using System;
class Program {
   static void Main(){
      int[] arr = new int[10];
      //寻找长度
      int arrLength = arr.Length;
      Console.WriteLine("Length of the array: "+arrLength);
   }
}输出结果
Length of the array: 10
上面,我们有一个数组-
int[] arr = new int[10];
现在找到长度,我们使用Length()方法-
int arrLength = arr.Length;
