我在排序列表中添加了一些独特的法语单词,但它似乎没有区分某些单词,如“bœuf”& Boeuf的”。
private static void TestSortedList()
{
Thread.CurrentThread.CurrentCulture = CultureInfo.CreateSpecificCulture("fr-fr");
SortedList sortedList = new SortedList(new Comparer(CultureInfo.CurrentCulture));
try
{
sortedList.Add("bœuf", "Value1");
sortedList.Add("boeuf", "Value1");
}
catch(Exception ex)
{
Console.WriteLine(ex.ToString());
}
}
因此,上面的代码抛出异常“System.ArgumentException:Item已被添加。” 请帮忙!
答案 0 :(得分:1)
SortedList sortedList = new SortedList(StringComparer.Ordinal);
try
{
sortedList.Add("bœuf", "Value1");
sortedList.Add("boeuf", "Value1");
}
catch (Exception ex)
{
Console.WriteLine(ex.ToString());
}
的工作原理。为了解释,Ordinal
和OrdinalIgnoreCase
比较器比较字符字节,它们对于不同的字符是不同的。
另见Difference between InvariantCulture and Ordinal string comparison。