C# List类型复制克隆副本以及插入数据
2021-03-20 20:27
标签:一个 class div his index color array 定义类 col C#中使用List集合的Insert方法在指定位置插入数据 C# List类型复制克隆副本以及插入数据 标签:一个 class div his index color array 定义类 col 原文地址:https://www.cnblogs.com/Dumb-dog/p/11841746.htmlC# List 复制克隆副本
方法一:
Liststring> t = new Liststring>(); //original
Liststring> t2 = new Liststring>(t.ToArray()); // copy of t
方法二:
//It is a one liner using LINQ.
Liststring> list1 = new Liststring>();
Liststring> list2 = new Liststring>();
// This will copy all the items from list 1 to list 2
list1.ForEach(i => list2.Add(i));在C#的List集合等数据类型变量中,我们可以使用List集合的Insert方法在指定的索引位置插入一个新数据,例如指定在List集合的第一个位置写入一个新数据或者在List集合的中间某个位置插入个新数据。
List集合类的Insert方法的格式为ListObj.Insert(index,listNewObject),其中ListObj代表List集合对象,index代表要插入数据的位置,listNewObject表示插入值。
例如,我们有个int类型的List集合intList,我们需要在list1集合的第一个位置插入0,则可以使用下列语句来实现:
list1.Insert(0,0);
如果List集合里面是自定义类对象,使用Insert方法也一样 。
例如我们在做数据查询条件的时候,货物分类list2是个查询条件,在查询页面的Select选择框中不仅要每个详细的分类,还需要指定Select控件的第一个项目为全部分分类。
针对返回到前台的list2集合,需要在第1个位置插入categoryName=‘全部‘的这个项目,可使用下列语句。
list2.Insert(0,new Category(){CategoryName=‘全部‘,CategoryId=‘0‘ });
文章标题:C# List类型复制克隆副本以及插入数据
文章链接:http://soscw.com/index.php/essay/66865.html