古巴的.NET CultureInfo?
我刚刚注意到 .NET Framework 在 CultureInfo 类中不包括古巴(格式 xx-XX)。此案例的最佳实践是什么?
I just noticed that the .NET Framework doesn't include Cuba in the CultureInfo class (format xx-XX). What is the best practice on this case?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为最佳实践是创建自定义 CultureInfo。
或者您可以使用
new CultureInfo("es")
。I think best practice is to create a Custom CultureInfo.
Or you could use
new CultureInfo("es")
.由于古巴没有特定的文化,我会坚持简单地使用
es
(因为它是一个西班牙语国家)。Since there isn't a specific culture for Cuba, I would stick with simply using
es
(since it is a Spanish speaking country).