How can I clone a dictionary<string,string> object?
How can I clone a dictionary<string,string> object? Is there a built-in method? I cannot find one. Do I have to do a memberwise copy to the new Dictionary<string,string> object with my own custom method?