gpt4 book ai didi

c# - 如何在 .Net Core 中为不同的语言创建 StringComparer?

转载 作者:行者123 更新时间:2023-11-30 14:50:00 27 4
gpt4 key购买 nike

我正在尝试为 .Net core 1.0 重新定位一个可移植的 C# 库。

一旦我获得了该语言的 CultureInfo 对象(通过调用者设置的委托(delegate)),我曾经做过类似的事情来获得该语言的字符串比较器:

IComparer<T> comparer = (IComparer<T>)StringComparer.Create(cultureInfo, caseInsensitive);

.Net Core 目前似乎只通过 StringComparer.CurrentCulture 等属性支持当前文化。

有没有办法为给定的语言或文化获取字符串比较器?

这对于同时使用多种语言的应用很重要,例如语言学习应用。

最佳答案

来自docs :

Each call to the CurrentCulture property get accessor returns a new StringComparer object, as the following code shows.

因此,您可以将 Thread.CurrentThread.CurrentCulture 设置为所需的文化,然后使用 StringComparer.CurrentCulture 获取该文化的 StringComparer ,然后将 Thread.CurrentThread.CurrentCulture 设置为下一个所需的文化,然后获取另一个 StringComparer ... 等等。

关于c# - 如何在 .Net Core 中为不同的语言创建 StringComparer?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37801425/

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