C# List常用方法

访问:

1.list[index],下标index从0开始

增加:

1.list.Add(T t),T为存储类型,将数据 t 存入链表末尾

2.list.AddRange(IEnumerable collection),IEnumerable代表此类型的数组类型(不一定是数组,链表之类的都行,只要实现了 IEnumerable 接口)可被 foreach 迭代,此方法将依次将 collection 中的数据存入列表中

3.public void Insert(int index, T item);
   public void InsertRange(int index, IEnumerable collection);  插入

查找:

1.list.BinarySearch(T item),二分查找,查找数据 item 在列表中的位置,下标从 0 开始,有重载

2.public bool Contains(T item);查找是否包含 item

3.public List FindAll(Predicate match); Predicate match 一种比较方法,形参数为 1,查找所有符合条件的值存入列表返回

例:list_int.FindAll(a => a > 0),列表类型为 int ,寻找 list_int 中所有满足值 大于0 的值所产生的列表。

4.public T Find(Predicate match); 返回满足条件的第一个值

5. public int FindIndex(Predicate match);
    public int FindIndex(int startIndex, Predicate match);
    public int FindIndex(int startIndex, int count, Predicate match);  startIndex开始下标,count遍历个数,startIndex = 0 表示     从 list[0] 开始

6.public T FindLast(Predicate match);
   public int FindLastIndex(Predicate match);
   public int FindLastIndex(int startIndex, Predicate match);
   public int FindLastIndex(int startIndex, int count, Predicate match);  找到符合条件的最后一个

7. public int IndexOf(T item, int index, int count);
    public int IndexOf(T item, int index);
    public int IndexOf(T item); index开始下标,count查找个数,item查找对象

8.public int LastIndexOf(T item);
   public int LastIndexOf(T item, int index);
   public int LastIndexOf(T item, int index, int count);  last

9.public List GetRange(int index, int count);  返回一个列表,从调用此函数的 list 的 index开始,count个

删除:

1.public void Clear();

2.public int RemoveAll(Predicate match);

3.public bool Remove(T item);

4.public void RemoveAt(int index);

5.public void RemoveRange(int index, int count);
 

 

 

你可能感兴趣的:(C#)