using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace _07List泛型集合
{
class Program
{
static void Main(string[] args)
{
List<int> list = new List<int>();//定义一个int集合
list.Add(5);//添加一个元素5
list.AddRange(new int[] { 1,4,3,7});
// list.Remove(3);
//list.RemoveAll(n=>n>4);
// list.RemoveAt(3);
// list.RemoveRange(1, 3);
// list.Insert(0, 34);
// list.InsertRange(1,new int[] { 200,300,400});
//集合转数组调用ToArray()
int[] nums=list.ToArray();
List<string> list2 = new List<string>();
string[] str= list2.ToArray();
string[] str3 = {"hello","world"};
List<string>list3= str3.ToList();
//遍历输出list
C#之四 List 泛型集合
最新推荐文章于 2024-10-14 20:35:27 发布
本文介绍了C#中List泛型集合的使用,包括创建、添加元素、删除元素、插入元素、集合与数组间的转换以及遍历输出等操作。示例代码详细展示了各种方法的用法,如Add、AddRange、Remove、RemoveAll、RemoveAt、RemoveRange、Insert、InsertRange以及ToArray等。同时,还涉及到集合的Count和Capacity属性,以及如何进行集合的合并、去重和分类等操作。
摘要由CSDN通过智能技术生成