我有一个字典对象:
protected Dictionary<string,string> myDict;
我希望能够通过键搜索字典并更新该键/值对的值。
if (!myDict.ContainsKey(key))
{
myDict.Add(key, value); //if key is not found in the collection add it.
}
else //if it is found then update it.
{
Update[Key].Value with myValue
}
有没有办法做到以上几点?如何通过检查键来更新键的值?与 else 语句中的伪代码匹配的实际代码是什么?