如何在 C# 中动态创建数组?


动态数组是可变长的数组且优于静态数组。这是因为数组的大小是固定的。

若要动态地在 C# 中创建数组,请使用 ArrayList 集合。它表示可以逐个索引的对象的有序集合。它还允许动态内存分配、添加、搜索和对列表中的项进行排序。

下面是一个示例,演示如何动态地在 C# 中创建数组。

示例

 在线演示

using System;
using System.Collections;
namespace CollectionApplication {
   class Program {
      static void Main(string[] args) {
         ArrayList al = new ArrayList();
         al.Add(99);
         al.Add(47);
         al.Add(64);
         Console.WriteLine("Count: {0}", al.Count);
         Console.Write("List: ");
         foreach (int i in al) {
            Console.Write(i + " ");
         }
         Console.WriteLine();
         Console.ReadKey();
      }
   }
}

输出

Count: 3
List: 99 47 64

更新于: 2020 年 6 月 23 日

5K+ 次浏览

职业起步

通过完成课程获得认证

开始
广告