C# 中的列表和数组之间有哪些不同之处?
数组存储一个固定大小的同类型元素序列集合,而列表是一个通用的集合。
要定义一个列表 −
List<string7gt; myList = new List<string>();
要在列表中设置元素,你需要使用 Add 方法 −
myList.Add("Audi"); myList.Add("BMW"); myList.Add("Chevrolet"); myList.Add("Hyundai");
要定义数组 −
int[] arr = new int[5];
要初始化并向数组中设置元素 −
int[] arr = new int[5] {23, 14, 11, 78, 56};
广告