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
广告