拉丁语文化信息

发布于 2024-12-06 12:48:52 字数 195 浏览 0 评论 0原文

我开发了一个用于处理多语言资源的应用程序。 在数据库中,当我需要带有语言标识符的列时,我使用语言 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 技术交流群。

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

发布评论

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

评论(1

蓝色星空 2024-12-13 12:48:52

我不相信这是可能的。拉丁语作为一种文化不受支持。

.NET Framework 具有创建自定义区域性的特定功能,但您不这样做无法决定 LCID。对于自定义区域性,LCID 始终为 0x1000

对于替换区域性,区域性标识符将映射到相应的国家语言支持 (NLS) 区域设置标识符。 对于用户定义的自定义区域性,此属性的值始终为十六进制 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.

For replacement cultures the culture identifier is mapped to the corresponding National Language Support (NLS) locale identifier. For user-defined custom cultures, the value of this property is always hexadecimal 0x1000.

Reference

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.

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