如何在 C# 中进行语言特定排序?
我有一个通用列表,其中可以包含基于当前用户的语言首选项的不同语言的值。例如,如果用户选择了日语,我会将日语文本填充到列表中。
我想根据日语文本对其进行排序,而不是语音排序。我们有一个带有列表的排序方法,或者我们可以使用一些扩展方法,那很好。我想知道的是如何根据不同的语言进行排序?
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您要查找的内容记录在此处:http://msdn.microsoft。 com/en-us/library/a7zyyk0c.aspx
基本上,您需要执行以下操作:
之后使用正常的“排序”方法(如 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:
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.