I found a lot of information on the Internet about how to make dictionaries available for case-insensitive viewing in such a way that if I added a key / value pair ("A", "value") that calls
MyDict["a"] == MyDict["A"]
will return true.
What I want to know is that I get a "key already added" message when I do
MyDict.Add("A", "value1"); MyDict.Add("a", "value2");
if I defined my dictionary to make case-sensitive queries. Is it impossible to define a dictionary in order to be able to add different overlaid keys?
spots source share