Tagged Questions
2
votes
4answers
619 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 ...