欢迎各位兄弟 发布技术文章
这里的技术是共享的
若要查找数组的长度,请使用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;
来自 https://www.nhooo.com/note/qa0mf6.html