如何确定C#中数组的大小

首先,设置一个数组-

int[] arr = {6, 3, 8, 4};

现在,使用Length属性获取数组的大小-

arr.Length

让我们看完整的代码-

示例

using System;

namespace Demo {

   public class Demo {

      public static void Main(string[] args) {

         int[] arr = {6, 3, 8, 4};

         Console.WriteLine("Array...");

         foreach (int i in arr) {

            Console.Write(i + " ");

         }

         Console.WriteLine("\nSize of Array: "+arr.Length);

      }

   }

}

输出结果

Array...

6 3 8 4

Size of Array: 4

以上是 如何确定C#中数组的大小 的全部内容, 来源链接: utcz.com/z/322001.html

回到顶部