在C#中,SortedDictionary
是一個有序字典,它會根據鍵自動對元素進行排序。要向SortedDictionary
添加元素,您可以使用Add
方法。以下是一個簡單的示例:
using System;
using System.Collections.Generic;
class Program
{
static void Main()
{
// 創建一個新的SortedDictionary
SortedDictionary<string, int> sortedDictionary = new SortedDictionary<string, int>();
// 添加元素到SortedDictionary
sortedDictionary.Add("apple", 1);
sortedDictionary.Add("banana", 2);
sortedDictionary.Add("orange", 3);
// 遍歷SortedDictionary并輸出鍵值對
foreach (KeyValuePair<string, int> entry in sortedDictionary)
{
Console.WriteLine("Key: {0}, Value: {1}", entry.Key, entry.Value);
}
}
}
在這個示例中,我們首先創建了一個SortedDictionary
,然后使用Add
方法添加了三個鍵值對。最后,我們遍歷SortedDictionary
并輸出每個鍵值對。