如何在 C# 中进行语言特定排序?

发布于 2024-11-29 08:15:32 字数 195 浏览 0 评论 0原文

我有一个通用列表,其中可以包含基于当前用户的语言首选项的不同语言的值。例如,如果用户选择了日语,我会将日语文本填充到列表中。

我想根据日语文本对其进行排序,而不是语音排序。我们有一个带有列表的排序方法,或者我们可以使用一些扩展方法,那很好。我想知道的是如何根据不同的语言进行排序?

我在 MSDN 上查看了一些关于不变文化等的文档,但没有帮助。

I have a generic list which can contain values in different languages based on current user's language preference. For example if user has selected Japanese, i will populate Japanese text in to the list.

I want to sort it based on Japanese text, not phonetic sort. We have a sort method with list or we can use a little extension method, that is fine. All I want to know is how do i sort based on different language?

I checked out some documentation on MSDN about invariant culture etc. which did not help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

筱果果 2024-12-06 08:15:32

您要查找的内容记录在此处:http://msdn.microsoft。 com/en-us/library/a7zyyk0c.aspx

基本上,您需要执行以下操作:

 Thread.CurrentThread.CurrentCulture = new CultureInfo("ja-JP");

之后使用正常的“排序”方法(如 Array 中定义的, List 等),并且它们将遵守日本的字符串排序规则。

What you're looking for is documented here: http://msdn.microsoft.com/en-us/library/a7zyyk0c.aspx

Basically, you want to do the following:

 Thread.CurrentThread.CurrentCulture = new CultureInfo("ja-JP");

After that you use the normal "sort" methods (as defined in Array, List<T>, etc.) and they will obey the Japanese rules for string sorting.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文