How To Modify An Element in the Dictionary Class?

Discussion in 'ASP.NET / ASP.NET Core' started by Zhang JingChu, Aug 18, 2012.

Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.
  1. 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?
    Code:
                   int value = runningcount[city];
                   runningcount.Remove(city);
                   runningcount.Add(city, ++value);
     
  2. Not that i've found.
     
Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.

Share This Page