辞書オブジェクトがあります:
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ステートメントの擬似コードと一致する実際のコードは何ですか?