List的用法

List

1、List的基础、常用方法:

(1)、声明: 
①、List mList = new List();  
T为列表中元素类型,现在以string类型作为例子

List list = new List();

②、List  list=new List (IEnumerable collection);

以一个集合作为参数创建List:

string[] arrary= { "a", "b", "c", "d", "e", "f" };
List list= new List(arrary);

(2)、添加元素:

①、 添加一个元素

  语法: List. Add(T item)  

List list= new List();
list.Add("a");

②、 添加一组元素

  语法: List. AddRange(IEnumerable collection)   

Li

你可能感兴趣的:(List的用法)