C# 中的完全日期短时间 (“f”) 格式说明符


完全日期短时间标准格式说明符表示长时间日期(“D”)和短时间(“t”)模式的组合。

使用DateTime来设定日期。

DateTime myDate = new DateTime(2018, 8, 29, 1, 10, 0);

现在,使用以下格式说明符(“f”)-

myDate.ToString("f", CultureInfo.CreateSpecificCulture("en-US"))

以下是示例 -

示例

 实时演示

using System;
using System.Globalization;
class Demo {
   static void Main() {
      DateTime myDate = new DateTime(2018, 8, 29, 1, 10, 0);
      Console.WriteLine(myDate.ToString("f",CultureInfo.CreateSpecificCulture("en-US")));
   }
}

输出

Wednesday, August 29, 2018 1:10 AM

更新于: 2020 年 6 月 23 日

142 次浏览

启动您的 职业生涯

通过完成课程获得认证

开始
广告