C# 日期时间格式。本地化字符串如“sec” “年”
我需要向客户显示格式化的日期时间,如“12 秒”“2011 年”
我怎样才能获得本地化字符串“sec”,“year”。 .net 中是否存在获取这些字符串的特殊格式?
I need to show for a customer formated datetime like "12 sec" "2011 year"
How can i get localized string "sec", "year". Is in .net exists special format to get those strings?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
不,没有。
您将需要构建包含这些本地化值的资源文件并使用它们。
No, there isn't.
You will need to build resource files that contain these localized values and use them.
不,但你可以使用这样的东西。
No, but you can use something like this.
您可以做的最好的事情是:
您还可以为此创建一个枚举并将其传递给您的方法并根据枚举返回您的字符串。
Best you can do is:
You can also create an enum for this and pass it to your method and return your string depending on the enum.
使用方法 DateTime.ToString(String, IformatProvider),您可以自定义 DateTime 的表示形式(请参阅 方法文档了解更多信息)。某些选项已使用此 API 进行本地化,但您需要一个用于“秒”、“年”等本地化版本的自定义资源文件。
Using the method DateTime.ToString(String, IformatProvider), you can customize the DateTime's representation a lot (see the method documentation for more info). Some options are already localized using this API, but you would need a custom resource file for localized versions of "sec", year", etc.