拉丁语文化信息
我开发了一个用于处理多语言资源的应用程序。 在数据库中,当我需要带有语言标识符的列时,我使用语言 LCID。 现在我需要添加新语言 - 拉丁语。它是 LCID - 1142。但是当我尝试创建新的 CultureInfo(1142) 时 - 抛出异常。 有什么办法可以解决这个问题吗?以某种方式将拉丁语添加到 CultureInfo 可用语言中。
谢谢您的回答。
I develop an app for working with multi-language resources.
In database, when I need colomn with language identifier, I use language LCID.
Now I need to add new language - Latin. It's LCID - 1142. But when I try to create new CultureInfo(1142) - exception thrown.
Is there any way to solve this problem? Somehow add Latin language to CultureInfo available languages.
Thank you for your answers.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不相信这是可能的。拉丁语作为一种文化不受支持。
.NET Framework 具有创建自定义区域性的特定功能,但您不这样做无法决定 LCID。对于自定义区域性,LCID 始终为
0x1000
。您最好在数据库中存储区域性名称,而不是 LCID。这将允许您加载自定义区域性,因为它们始终按名称加载。一旦完成,您就可以继续创建自己的文化。
I don't believe that is possible. Latin is not supported as a culture.
The .NET Framework has specific functionality for creating custom cultures, but you don't get to decide the LCID. The LCID is always
0x1000
for a custom culture.You may be better off storing the name of the culture in the database, instead of the LCID. This would allow you to load custom cultures since they are always loaded by name. Once that is done, you can proceed to create your own culture.