溫馨提示×

c#集合怎樣添加新元素

c#
小樊
81
2024-11-20 13:24:35
欄目: 編程語言

在C#中,有多種類型的集合可以用來存儲和管理數(shù)據(jù)。以下是一些常見集合類型以及如何向它們添加新元素的示例:

  1. List
using System.Collections.Generic;

List<int> myList = new List<int>(); // 創(chuàng)建一個整數(shù)列表
myList.Add(1); // 添加新元素1
myList.Add(2); // 添加新元素2
  1. ArrayList
using System.Collections;

ArrayList<int> myArrayList = new ArrayList<int>(); // 創(chuàng)建一個整數(shù)數(shù)組列表
myArrayList.Add(1); // 添加新元素1
myArrayList.Add(2); // 添加新元素2
  1. Dictionary<TKey, TValue>
using System.Collections.Generic;

Dictionary<string, int> myDictionary = new Dictionary<string, int>(); // 創(chuàng)建一個字符串到整數(shù)的字典
myDictionary.Add("one", 1); // 添加新元素:鍵為"one",值為1
myDictionary.Add("two", 2); // 添加新元素:鍵為"two",值為2
  1. HashSet
using System.Collections.Generic;

HashSet<int> myHashSet = new HashSet<int>(); // 創(chuàng)建一個整數(shù)集合
myHashSet.Add(1); // 添加新元素1
myHashSet.Add(2); // 添加新元素2

請注意,在使用集合時,可能需要根據(jù)實際情況選擇合適的集合類型。例如,如果需要存儲唯一的元素,可以使用HashSet;如果需要保持元素的插入順序,可以使用List或LinkedList。

0