什么是 LCID 127?
在 asp.net 中,LCID 127 代表什么文化?
<%Response.Write(System.Globalization.CultureInfo.InvariantCulture.LCID)%>
输出 = 127。
In asp.net what is the culture represented by LCID 127?
<%Response.Write(System.Globalization.CultureInfo.InvariantCulture.LCID)%>
Output = 127.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这就是“不变文化”,即没有文化。
请参阅此 LCID 列表和相关的文化 - 这是第一个(127 = 0x007F)。
It is the "Invariant Culture", i.e. no culture.
See this list of LCID's and associated cultures - it is the first one (127 = 0x007F).
127 (
0x007F
) 是不变的区域性 ID。这是一种特殊的文化——不是像英语或西班牙语那样的普通文化。您可以在此中查看所有文化列表。127 (
0x007F
) is the invariant culture ID. It's a special culture - not a normal culture like English or Spanish. You can see all the cultures in this list.