c#

c#集合怎样添加新元素

小樊
81
2024-11-20 13:24:35
栏目: 编程语言

在C#中,有多种类型的集合可以用来存储和管理数据。以下是一些常见集合类型以及如何向它们添加新元素的示例:

  1. List
using System.Collections.Generic;

List<int> myList = new List<int>(); // 创建一个整数列表
myList.Add(1); // 添加新元素1
myList.Add(2); // 添加新元素2
  1. ArrayList
using System.Collections;

ArrayList<int> myArrayList = new ArrayList<int>(); // 创建一个整数数组列表
myArrayList.Add(1); // 添加新元素1
myArrayList.Add(2); // 添加新元素2
  1. Dictionary<TKey, TValue>
using System.Collections.Generic;

Dictionary<string, int> myDictionary = new Dictionary<string, int>(); // 创建一个字符串到整数的字典
myDictionary.Add("one", 1); // 添加新元素:键为"one",值为1
myDictionary.Add("two", 2); // 添加新元素:键为"two",值为2
  1. HashSet
using System.Collections.Generic;

HashSet<int> myHashSet = new HashSet<int>(); // 创建一个整数集合
myHashSet.Add(1); // 添加新元素1
myHashSet.Add(2); // 添加新元素2

请注意,在使用集合时,可能需要根据实际情况选择合适的集合类型。例如,如果需要存储唯一的元素,可以使用HashSet;如果需要保持元素的插入顺序,可以使用List或LinkedList

0
看了该问题的人还看了