1
vote
4answers
252 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 …
1
vote
2answers
196 views
how do you store and retreive a strinddictionary 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
Ive created the entry in the "settings" portion of the program called "extentions
but when i …
1
vote
4answers
176 views
StringDictionary as a common static list?
Hi, 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 …
4
votes
2answers
714 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 …
