私が持っているとしましょう、
Dictionary<string, int> dict = new Dictionary<string, int>();
そして、すでにいくつかのアイテムがあります:
「A」、1
「B」、15
「C」、9
...。
今、私は新しいものを追加しているので、キーがすでに存在するかどうかをチェックしています:
for(int i = 0; i<n; i++)
{
if (dict.ContainsKey(newKey[i] == true)
{
//I should add newValue to existing value(sum all of them) of existing key pair
}
else
{
dict.Add(newKey[i],newValue[i]);
}
}
既存のキーのすべての値を要約し、既存のキーペアの既存の値に新しい値を追加するにはどうすればよいですか?