I work on .net 2.0 and would like to do the following.

I want to update the value in the Dictionary for a specific key. I will be putting it in a for loop so that the value gets updated for all the keys passed in.

Any idea?

link|improve this question

feedback

3 Answers

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

myDictionary[myKey] = myNewValue;

HTH! mt

link|improve this answer
feedback
up vote 6 down vote accepted

It s possible by accessing the key as index

for example

if the dictionary is declared as Dictionary list = new Dictionary();

then you can set the value for the key "test" as follows

list["test"] = list["test"] + 1;

now the value for the key will get incremented by 1.

Cheers..!

link|improve this answer
yes. ......... – Ray Aug 7 '09 at 10:33
feedback

Here is a way to update by an index much like foo[x] = 9 where x is a key and 9 is the value

    var views = new Dictionary<string, bool>();

    foreach (var g in grantMasks)
    {
          string m = g.ToString();
          for (int i = 0; i <= m.Length; i++)
          {
                views[views.ElementAt(i).Key] = m[i].Equals('1') ? true : false;
          }
    }
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.