3
Reply

How To Modify An Element in the Dictionary Class?

William Thompson

William Thompson

Aug 18 2012 11:45 PM
1.3k
How To Modify An Element in the Dictionary Class?
===============================
C# has this cool Dictionary class that you can use like a Hash Table.  Is there a way of changing the value of an indexed element without resorting to removing it like this?
  int value = runningcount[city];
  runningcount.Remove(city);
  runningcount.Add(city, ++value);

and, by the way, how do I change my avatar here?

Answers (3)