ASP.net泛型list常用操作
程序员文章站
2022-06-11 16:12:55
...
List在.NET里面使用得非常频繁,但有好多人不了解它各种小用法。我就一直记不大住...
asp.net中List的简单用法,例如:
List<int> list = new List<int>();
//新增数据
list.Add(123);
//修改数据
list[0] = 345;
//移除数据
list.RemoveAt(0);
程序里主要是对List对象的各种操作,例如排序,截取(跳过,取区间等)。用法如:
//list的排序
list.Sort();
//list的遍历
foreach(int i in list)
strTest=i.ToString();
//list找出一个int类型数据
list.Find();
//找出多个int类型的数据
List<int> listnew = list.FindAll(..)
//判断是否存在
list.Exist();
//截取(取前10条数据)
list.Take(10);
//截取(跳过前10条数据)
list.Skip(10);
List分页,截取第3页的数据,即页码为31-41的数据(pagesize=10):
list.Ship(30).Take(10);
原博客点击打开链接
上一篇: nginx
下一篇: 1005 Spell It Right