使用数组列表
我在使用ArrayList数组列表时,我加了命名空间using System.Collections;建了对象myArrayList,用Count表示出了它实际包含的数量,用Capacity表示可以包含的数量,但用Value表示出myArrayList集合所有的数量。我不会啊,代码:
System.Collections.ArrayList myArrayList = new System.Collections.ArrayList();myArrayList对象
myArrayList.Add("IT中国");
myArrayList.Add("huhuh");
myArrayList.Add("!");
Console.Write("myArrayList");
Console.WriteLine();
Console.Write(" Count:{0}",myArrayList.Count);
Console.WriteLine();
Console.Write(" Capacity:{0}",myArrayList.Capacity);
Console.WriteLine();
用Value表示出myArrayList集合所有的数量。我不会啊,在这转了死脑筋啊