C# – How to update the value stored in Dictionary in C#

cdictionary

How to update value for a specific key in a dictionary Dictionary<string, int>?

Best Answer

Just point to the dictionary at given key and assign a new value:

myDictionary[myKey] = myNewValue;