添加法语字符时SortedList抛出异常

时间:2013-12-23 15:24:14

标签: c# special-characters sortedlist

我在排序列表中添加了一些独特的法语单词,但它似乎没有区分某些单词,如“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已被添加。” 请帮忙!

1 个答案:

答案 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());
    }

的工作原理。为了解释,OrdinalOrdinalIgnoreCase比较器比较字符字节,它们对于不同的字符是不同的。 另见Difference between InvariantCulture and Ordinal string comparison