在C#中,字典(Dictionary)是一種非常有用的數據結構,它允許你通過鍵(key)來存儲和檢索值(value)
using System.Collections.Generic;
,以便使用Dictionary
類。using System.Collections.Generic;
string
作為鍵(key)和int
作為值(value)。Dictionary<string, int> myDictionary = new Dictionary<string, int>();
Add()
方法將鍵值對添加到字典中。myDictionary.Add("apple", 5);
myDictionary.Add("banana", 7);
myDictionary.Add("orange", 3);
[]
操作符或TryGetValue()
方法來獲取指定鍵的值。int appleCount = myDictionary["apple"]; // 使用方括號操作符
int bananaCount;
bool success = myDictionary.TryGetValue("banana", out bananaCount); // 使用TryGetValue()方法
myDictionary["apple"] = 10;
Remove()
方法刪除指定鍵及其關聯的值。myDictionary.Remove("orange");
ContainsKey()
方法來判斷字典中是否包含指定的鍵。bool containsApple = myDictionary.ContainsKey("apple");
foreach
循環遍歷字典中的所有鍵值對。foreach (KeyValuePair<string, int> entry in myDictionary)
{
Console.WriteLine($"Key: {entry.Key}, Value: {entry.Value}");
}
這就是在C#中使用字典存儲和操作數據的基本方法。希望對你有所幫助!