全日期短时间标准格式说明符表示长日期(“ D”)和短时间(“ t”)模式的组合。
UseDateTime设置日期。
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