欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

您如何在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;


来自 https://www.nhooo.com/note/qa0mf6.html


普通分类: