我正在使用带有 .NET 3.5 的 C# 中的字典。我创建了一个对象并传入了相等比较器。但是,当我执行以下代码时,我没有得到预期的结果:Dictionary
<string, int
>StringComparer.Ordinal
Dictionary<string, int> theDictionary = new Dictionary<string, int>(StringComparer.Ordinal);
theDictionary.Add("First", 1);
bool exists = theDictionary.ContainsKey("FIRST"); // equals true, when it should not
我在这里没有看到什么?