Asp.Net 中的 UICulture 列表
我在哪里可以找到完整的 UICulture 列表,例如 en : English en-us 等...
Where can I find complete UICulture list like en : English en-us etc...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过执行以下操作枚举系统上安装的所有区域性:
您可以使用
CultureInfo.Name
属性获取“en-US”等字符串。如果您只是寻找一个列出所有这些的网页,我找到了这个:
http://samples.basicdatepicker.com/cultureinfo.aspx
You can enumerate all the cultures that are installed on the system by doing this:
You can use the
CultureInfo.Name
property to get the strings like "en-US".If you're just looking for a web page that lists them all, I found this one:
http://samples.basicdatepicker.com/cultureinfo.aspx