ArrayList。
ArrayList可以添加任何元素进去。在使用前需要添加命名空间:using System.Collections;。使用方法:
ArrayList list=new ArrayList();
list.Add();表示添加单个元素
list.AddRange();表示添加一个集合元素
list.Clear();表示清空所有元素
list.Remove();表示删除单个元素
list.RemoveAt(x);表示删除List中第x个元素
list.RemoveRange(x, y);表示删除List中第x到y个元素(不包括y)
list.Reverse();表示反转元素
list.Insert(x,需要插入的内容);表示在x元素前面插入东西
list.InsertRange(x, new xxxx[] { });表示在x元素前面插入一个数组。
bool b=list.Contains(xxx);表示判断元素是否包含指定内容。
ArrayList list = new ArrayList();
list.Add(1);
list.Add(3.14);
list.Add(true);
list.Add("hhh");
list.Add('男');
list.Add(500m);
list.Add(new int[] { 1, 2, 3, 4, 5, 6, 7, 8, 9 });
Person p = new Person();
list.Add(p);
list.Add(list);