gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-30 12:46:16 27 4
gpt4 key购买 nike

我正在向排序列表中添加一些独特的法语单词,但它似乎无法区分某些单词,例如“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 has already been added.”请帮忙!

最佳答案

    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也是。

关于c# - 添加法语字符时 SortedList 抛出异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20746415/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com