Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

22
votes
6answers
4k views

StringDictionary vs Dictionary<string, string>

Does anyone have any idea what the practical differences are between the System.Collections.Specialized.StringDictionary object and System.Collections.Generic.Dictionary? I've used them both in the ...
2
votes
4answers
592 views

In C# .NET, is there a reason for no copy constructor for StringDictionary?

I apologize if this is a dumb question, but hear me out: Dictionary<string, string> genericDict = new Dictionary<string, string>; genericDict.Add("blah", "bloop"); // Use the copy ...
2
votes
4answers
464 views

StringDictionary as a common static list?

what I'm trying to do is have a project-wise static dictionary so I can access a single list from anywhere in my code. Until now, I came up with this solution, a public static class with a public ...
1
vote
3answers
1k views

How do you store and retrieve a StringDictionary in app.config?

I have a list of information in a string dictionary that I want to store in the app.config for my program. I've created the entry in the "settings" portion of the program called "extentions" but when ...
0
votes
1answer
224 views

listbox bound to a Specialized.StringDictionary does not update

I've got a listbox (listStorageLocations) - thats bound to a BindingSource called listStorageLocationsBindingSource. This BindingSource is bound to a collection of StringDictionary items in my ...