Tagged Questions
3
votes
6answers
4k views
Change cardinality of item in C# dictionary
I've got a dictionary, something like
Dictionary<Foo,String> fooDict
I step through everything in the dictionary, e.g.
foreach (Foo foo in fooDict.Keys)
MessageBox.show(fooDict[foo]);
...