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);
Page 1 of 1
How To Modify An Element in the Dictionary Class?
- ← Login script for cleaning up partitions sought
- Programming (C++, Delphi, VB/VBS, CMD/batch, etc.)
- Link program to external file →
Share this topic:
Page 1 of 1



Help
Back to top








