在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#中使用字典存储和操作数据的基本方法。希望对你有所帮助!