C# 日期时间格式。本地化字符串如“sec” “年”

发布于 2024-10-11 03:05:23 字数 94 浏览 5 评论 0原文

我需要向客户显示格式化的日期时间,如“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 技术交流群。

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

发布评论

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

评论(4

鹿童谣 2024-10-18 03:05:23

不,没有。

您将需要构建包含这些本地化值的资源文件并使用它们。

No, there isn't.

You will need to build resource files that contain these localized values and use them.

爱冒险 2024-10-18 03:05:23

不,但你可以使用这样的东西。

DateTime.ToString("ss") + "sec";

No, but you can use something like this.

DateTime.ToString("ss") + "sec";
如何视而不见 2024-10-18 03:05:23

您可以做的最好的事情是:

private const string yearText = "{0} year"; // do this for month or hour or minute..
DateTime date = new DateTime(1999, 12, 10, 5, 10, 16);
string year = GetYearString(date);

private string GetYearString(DateTime date)
{
      return string.Format(yearText, date.Year);
}

您还可以为此创建一个枚举并将其传递给您的方法并根据枚举返回您的字符串。

Best you can do is:

private const string yearText = "{0} year"; // do this for month or hour or minute..
DateTime date = new DateTime(1999, 12, 10, 5, 10, 16);
string year = GetYearString(date);

private string GetYearString(DateTime date)
{
      return string.Format(yearText, date.Year);
}

You can also create an enum for this and pass it to your method and return your string depending on the enum.

七禾 2024-10-18 03:05:23

使用方法 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.

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