I have the following code in c# , basically it's a simple dictionary with some keys and their values.
Dictionary<string, int> dictionary = new Dictionary<string, int>(); dictionary.Add("cat", 2); dictionary.Add("dog", 1); dictionary.Add("llama", 0); dictionary.Add("iguana", -1); I want to update the key 'cat' with new value 5.
How could I do this?