namespace List泛型
{
class List泛型
{
static void Main(string[] args)
{
//创建泛型集合对象
List<int> list = new List<int>();
list.Add(2);
list.Add(12);
list.Add(52);
list.Add(25);
list.Add(27);
list.Add(23);
//一次加添一个范围,即集合
list.AddRange(new int[] { 1, 2, 2, 5, 4, 7 });
//也可以把自身加进去,因为也是int型
list.AddRange(list);
// list泛型集合可以转换为数组
int[] nums = list.ToArray();
// 将数组转成list泛型集合
List<int> lst = nums.ToList();
for (int i = 0; i < list.Count; i++)
{
Console.WriteLine(list[i]);
}
Console.ReadKey();
}
}
}
Post Views: 234