在C#中,有多种类型的集合可以用来存储和管理数据。以下是一些常见集合类型以及如何向它们添加新元素的示例:
using System.Collections.Generic;
List<int> myList = new List<int>(); // 创建一个整数列表
myList.Add(1); // 添加新元素1
myList.Add(2); // 添加新元素2
using System.Collections;
ArrayList<int> myArrayList = new ArrayList<int>(); // 创建一个整数数组列表
myArrayList.Add(1); // 添加新元素1
myArrayList.Add(2); // 添加新元素2
using System.Collections.Generic;
Dictionary<string, int> myDictionary = new Dictionary<string, int>(); // 创建一个字符串到整数的字典
myDictionary.Add("one", 1); // 添加新元素:键为"one",值为1
myDictionary.Add("two", 2); // 添加新元素:键为"two",值为2
using System.Collections.Generic;
HashSet<int> myHashSet = new HashSet<int>(); // 创建一个整数集合
myHashSet.Add(1); // 添加新元素1
myHashSet.Add(2); // 添加新元素2
请注意,在使用集合时,可能需要根据实际情况选择合适的集合类型。例如,如果需要存储唯一的元素,可以使用HashSet