C# List
Following examples show how to create and manipulate with .NET strongly typed list List<T>.
List<T>
List is a generic type, so you can create list of any type (it can be reference type such asCustomer or value type such as int)
var list1 = new List<object>(); var list2 = new List<Customer>(); var list3 = new List<int>();
All the following examples use list of integer values List<int>.
List Constructor
Creates an empty list (of integer values).
var list = new List<int>();
Creates a list and initializes it with some items (integer values).
var list = new List<int>() { 8, 3, 2 };
Creates a list and initializes it with items of another list (or array or anything which implements IEnumerable interface).
var listA = new List<int>() { 8, 3, 2 };
var listB = new List<int>(listA);
Creates a list with specified capacity.
var list = new List<int>(16);
| list.Count: |
0 |
| list.Capacity: |
16 |
List[index]
Gets an item at the specified zero-based index.
Sets the item at the specified zero-based index.
List.Add
Adds an item to the end of the list.
List.AddRange
Adds items of another list (or an IEnumerable collection) to the end of the list.
List.BinarySearch
Returns the zero-based index of the item in the sorted list. If the items is not found, returns a negative number. See MSDN for more info.
This List<T> method works only if the type T implements IComparable<T> or IComparable interface.
int index = list.BinarySearch(6);
This BinarySearch method overload uses specified comparer.
int index = list.BinarySearch(item: 6,comparer: new MyComparer() );
This BinarySearch method overload uses specified comparer and search in specified range.
int index = list.BinarySearch(index: 1, count: 3, item: 6,comparer: new MyComparer() );
This example shows the case when the item was not found in the list. The result is negative number.
int index = list.BinarySearch(index: 1, count: 2, item: 6,comparer: new MyComparer() );
public class MyComparer : IComparer<int>
{
public int Compare(int x, int y) { return x.CompareTo(y); }
}
List.Clear
Removes all items from the list. Count is zero, Capacity is unchanged.
List.Contains
Returns true if the list contains the specified item.
bool result = list.Contains(3);
Returns false if the list doesn't contain the specified item.
bool result = list.Contains(6);
List.ConvertAll
Converts items using specified delegate. Items can be converted to another type.
var conv = new Converter<int,decimal>(x => (decimal)(x+1));
var listB = listA.ConvertAll<decimal>(conv);
List.CopyTo
Copies all list items into the beginning of the specified array.
| list: |
8 3 2 |
| array: |
0 0 0 0 0 |
list.CopyTo(array);
Copies all list items into the array, starting from the specified array index.
| list: |
8 3 2 |
| array: |
0 0 0 0 0 |
list.CopyTo(array, arrayIndex: 2);
Copies a range of list items into the array, starting from the specified array index.
| list: |
8 3 2 |
| array: |
0 0 0 0 0 |
list.CopyTo(index: 1, array: array,arrayIndex: 3, count: 1);
List.Exists
Returns true if the list contains items matching the specified predicate.
bool result = list.Exists(x => x == 3);
Returns false if the list doesn't contain items matching the specified predicate.
bool result = list.Exists(x => x > 10);
List.Equals
Returns true if the two specified lists are reference equal (are the same instance).
var listA = new List<int>() { 8, 3, 2 };
var listB = listA;
bool result = listA.Equals(listB);
Returns false if the specified two lists are not the same instance. To determine whether all items of the two lists are equal use LINQ method SequenceEqual.
var listA = new List<int>() { 8, 3, 2 };
var listB = new List<int>() { 8, 3, 2 };
bool result = listA.Equals(listB);
List.Find
Returns the first occurrence of item matching the specified predicate.
int item = list.Find(x => x > 2);
For List<T> returns the default value of type T if no item matches the predicate. In this case the default value of int is 0.
int item = list.Find(x => x > 10);
List.FindAll
Returns list with items matching the specified predicate.
var listB = listA.FindAll(x => x > 2);
Returns empty list, if no item matches the specified predicate.
var listB = listA.FindAll(x => x > 10);
List.FindIndex
Returns zero-based index of the first item which matches the specified predicate.
int index = list.FindIndex(x => x < 5);
Returns index of the first item which matches the specified predicate. It searches the list from startIndex to the end of the list.
int index = list.FindIndex(startIndex: 2, match: x => x < 5);
Returns index of the first item which matches the specified predicate. It searches the list in the range specified by startIndex and count.
int index = list.FindIndex(startIndex: 2, count: 2,match: x => x < 5);
Returns -1 if no item matches the specified predicate.
int index = list.FindIndex(startIndex: 2, count: 2,match: x => x < 3);
List.FindLast
Returns the last occurrence of item matching the specified predicate.
int item = list.FindLast(x => x < 5);
For List<T> returns the default value of type T if no item matches the predicate. In this case the default value of int is 0.
int item = list.FindLast(x => x > 10);
List.FindLastIndex
Returns zero-based index of the last item which matches the specified predicate.
int index = list.FindLastIndex(x => x < 5);
Returns index of the last item which matches the specified predicate. It searches the list from the beginning to the specified startIndex.
int index = list.FindLastIndex(startIndex: 2, match: x => x < 5);
Returns index of the last item which matches the specified predicate in the range specified by count and the end index surprisingly called startIndex.
int index = list.FindLastIndex(startIndex: 2, count: 2,match: x => x < 5);
Returns -1 if no item matches the specified predicate.
int index = list.FindLastIndex(startIndex: 2, count: 2,match: x => x < 3);
List.ForEach
Executes the specified action for each item in the list. It does the same as standardC# foreach statement.
list.ForEach(x => {Console.Write(x); });
List.GetRange
Returns a list with a range of items of the source list.
var listB = listA.GetRange(index: 1, count: 3);
List.IndexOf
Returns the zero-based index of the first occurrence of the item in the list.
int index = list.IndexOf(8);
Returns the index of the first occurrence of the item in the list. It searches the list from the specified index to the end of the list.
int index = list.IndexOf(item: 8,index: 1);
Returns the index of the first occurrence of the item in the list. It searches the list in the range specified by index and count.
int index = list.IndexOf(item: 3,index: 1, count: 2);
Returns -1 if the item is not found in the specified range.
int index = list.IndexOf(item: 8,index: 1, count: 2);
List.Insert
Inserts an item into the list at the specified index.
list.Insert(index: 1, item: 5);
List.InsertRange
Inserts items of another list (or object implementing IEnumerable) into the list at the specified index.
listA.InsertRange(index: 1,collection: listB);
List.LastIndexOf
Returns the zero-based index of the last occurrence of the item in the list.
int index = list.LastIndexOf(8);
Returns the index of the last occurrence of the item in the list. It searches the list from the beginning of the list to the specified index.
int index = list.LastIndexOf(item: 8, index: 3);
Returns the index of the last occurrence of the item in the list. It searches in the range specified by count and the end index.
int index = list.LastIndexOf(item: 6, index: 3, count: 2);
Returns -1 if the item is not found in the specified range.
int index = list.LastIndexOf(item: 8, index: 3, count: 2);
List.Remove
Removes the first occurence of the specified item from the list.
List.RemoveAll
Removes all items matching the specified predicate.
list.RemoveAll(x => x < 4);
List.RemoveAt
Removes the item at the specified index.
List.RemoveRange
Removes items from the specified range.
list.RemoveRange(index: 2,count: 3);
List.Reverse
Reverses the order of all items in the list.
Reverses the order of the items in the specified range.
list.Reverse(index: 1, count: 2);
List.Sort
Sorts all items in the list.
This List<T> method works only if the type T implements IComparable<T> or IComparable interface.
Sorts list using comparison delegate.
list.Sort((x, y) => x.CompareTo(y));
Sorts list using comparison delegate (in descending order).
list.Sort((x, y) => y.CompareTo(x));
Sorts the list using custom comparer.
list.Sort(new MyComparer());
Sorts the specified range of the list using custom comparer.
list.Sort(index: 2, count: 3,comparer: new MyComparer());
public class MyComparer : IComparer<int>
{
public int Compare(int x, int y) { return x.CompareTo(y); }
}
List.ToArray
Creates new array and copies all items into it.
int[] array = list.ToArray();
Returns empty array for empty list.
int[] array = list.ToArray();
List.TrimExcess
Trims the list capacity to reduce memory usage if it's reasonable. It sets Capacity to the same value as Count but only if the Count is less than about 90 % of Capacity.
| list.Count: |
5 |
| list.Capacity: |
8 |
list.TrimExcess();
| list.Count: |
5 |
| list.Capacity: |
5 |
If the Count is almost the same as the list Capacity it does nothing.
| list.Count: |
7 |
| list.Capacity: |
8 |
list.TrimExcess();
| list.Count: |
7 |
| list.Capacity: |
8 |
List.TrueForAll
Returns true if all items in the list match the specified predicate.
bool result = list.TrueForAll(x => x < 10);
Returns false if not all items in the list match the specified predicate.
bool result = list.TrueForAll(x => x < 5);
- 《Java从入门到失业》第四章:类和对象(4.3):一个完整的例子带你深入类和对象
4.3一个完整的例子带你深入类和对象 到此为止,我们基本掌握了类和对象的基础知识,并且还学会了String类的基本使用,下面我想用一个实际的小例子,逐步来讨论类和对象的一些其他知识点. 4.3.1需求 ...
- SpringBoot整合spring-security-oauth2完整实现例子
SpringBoot整合spring-security-oauth2完整实现例子 技术栈 : springboot + spring-security + spring-oauth2 + mybati ...
- AgileEAS.NET SOA 中间件平台.Net Socket通信框架-完整应用例子-在线聊天室系统-下载配置
一.AgileEAS.NET SOA中间件Socket/Tcp框架介绍 在文章AgileEAS.NET SOA 中间件平台Socket/Tcp通信框架介绍一文之中我们对AgileEAS.NET SOA ...
- SpringBoot整合Quartz作为调度中心完整实用例子
因为想要做一个类似于调度中心的东西,定时执行一些Job(通常是一些自定义程序或者可执行的jar包),搭了一个例子,总结了前辈们的相关经验和自己的一些理解,如有雷同或不当之处,望各位大佬见谅和帮忙指正. ...
- spring+shiro共享session完整小例子
之前写过一个,只不过那个不单纯,有人跑不通,所以今天整个纯粹的小例子. 要求你有Redis. 源码 GitHub 目录结构 因为这是个例子,仅仅为了体现共享session,所以权限认证部分没有加入处理 ...
- windows下apache httpd2.4.26集群完整搭建例子:下载、启动、tomcat集群例子
第一部分——下载 1.1: 百度搜索apache httpd关键字,第一个链接既是官方下载地址.如果这一步不会,此篇文章不适合你阅读,请自行停止. 1.2:进入官网http://httpd.apach ...
- C#通过完整的例子,Get常用的2个套路,理解抽象方法,虚方法,接口,事件
一.理解:抽象方法,虚方法,接口,事件 描述: 1.定义一个抽象父类"People": 要求: 1>3个属性:名字,性别,年龄: 2>一个普通方法"说话&qu ...
- Struts2 + uploadify 多文件上传完整的例子!
首先,我这里使用的是 Jquery Uploadify3.2版本号 导入相关的CSS JS <link rel="stylesheet" type=" ...
- ibaits的一个简单的完整的例子
ibaits的简单介绍: iBatis 是apache 的一个开源项目,一个O/R Mapping(对象/关系映射) 解决方案,iBatis 最大的特点就是小巧,上手很快.如果不需要太多复杂的功能,i ...
随机推荐
- Android Studio插件:GsonFromat
这个Android Studio插件可以根据JSONObject格式的字符串,自动生成实体类参数. 具体见:https://github.com/zzz40500/GsonFormat
- php 路径
//魔术变量,获取当前文件的绝对路径 echo "__FILE__: ========> ".__FILE__; echo '<br/>'; //魔术变量,获取当 ...
- Nagios安装
在做安装之前确认要对该机器拥有root权限. 确认你安装好的Fedora系统上已经安装如下软件包再继续: Apache GCC编译器 GD库与开发库 可以用yum命令来安装这些软件包: yum ins ...
- 网站底部版权信息区(bootstrap)
bootstrap的强大功能毋庸置疑.所以,网站底部版权信息区可以用bootstrap的“栅格系统”完成. 下面是一个未经处理的底部版权信息区的样式: <div class="cont ...
- fiddler ios 手机抓包
前言: 环境 :手机ios ip5s .fiddler .360wifi 保证手机和电脑是局域网(同一网络) 1:下载安装fiddler 准备环境 2:配置 fiddler 对应把图勾选上 弹出框 点 ...
- 关于mysql数据库的备份和还原
在搭建网站的过程中常遇到文件的备份与还原,以备下次再使用 备份: 图中蓝色画线处为备份命令,wordpress为要备份的数据库名,.">"可将结果输出到文件中,/opt/wo ...
- WPF如何控制每个窗体确保只打开一次
在主窗体上点击菜单时,如果做到每个窗体不会被重复打开,如果打开了,可以将其重新获得焦点. 首先在主窗体中将菜单关联的窗体实例化. 第二步:将每个菜单对应窗体的closing事件重写.之所以要重写clo ...
- ios语音识别
p.p1 { margin: 0.0px 0.0px 0.0px 0.0px; font: 13.0px Menlo; color: #000000; min-height: 15.0px } p.p ...
- Microsoft Visual Studio 开发的C++程序软件发布相关事宜
VS2005/VS2008软件发布: Debug版本: 非MFC程序: 编译选项mdd: 仅依赖C++库和C运行时库,需要到VS2005/VS2008下安装目录VC/redist/Debug_NonR ...
- Android 谈谈封装那些事 --BaseActivity 和 BaseFragment(二)
1.前言 昨天谈了BaseActivity的封装,Android谈谈封装那些事--BaseActivity和BaseFragment(一)有很多小伙伴提了很多建议,比如: 通用标题栏可以自定义Vi ...