在C#中,Map
集合通常是指Dictionary<TKey, TValue>
using System;
using System.Collections.Generic;
class Program
{
static void Main()
{
// 創建一個字典,鍵為字符串,值為整數
Dictionary<string, int> map = new Dictionary<string, int>();
// 向字典中添加數據
map.Add("apple", 1);
map.Add("banana", 2);
map.Add("orange", 3);
// 檢索并輸出"apple"對應的值
if (map.TryGetValue("apple", out int value))
{
Console.WriteLine($"The value of 'apple' is: {value}");
}
else
{
Console.WriteLine("Key not found.");
}
// 更新"apple"的值
map["apple"] = 4;
// 刪除"banana"
map.Remove("banana");
// 遍歷字典并輸出所有鍵值對
foreach (var item in map)
{
Console.WriteLine($"Key: {item.Key}, Value: {item.Value}");
}
}
}
在這個示例中,我們首先創建了一個Dictionary<string, int>
類型的變量map
。然后,我們向字典中添加了三個鍵值對。接下來,我們使用TryGetValue
方法檢索并輸出"apple"對應的值。之后,我們更新"apple"的值,并刪除"banana"。最后,我們遍歷字典并輸出所有鍵值對。