votes
Help adding an item to a Dictionary of KeyValuePairs<string,object) using a object initializer
I have a dictionary, and I want to know how to add an item to the collection using which I believe is called 'object initializer'. So my collection is SomeDictionary. [code]SomeDictionary.Add(new KeyValuePair<string,object>() ?? ...
