“常规日期较长时间”标准格式说明符是短日期(“ d”)和较长时间(“ T”)模式的组合,并用空格分隔。
设置日期-
DateTime dt = new DateTime(2018, 1, 3, 3, 45, 20);
现在,使用ToString()
方法和DateTimeFormatInfo。
dt.ToString("G", DateTimeFormatInfo.InvariantInfo)
using System; using System.Globalization; class Demo { static void Main() { DateTime dt = new DateTime(2018, 1, 3, 3, 45, 20); Console.WriteLine(dt.ToString("G", DateTimeFormatInfo.InvariantInfo)); } }
输出结果
01/03/2018 03:45:20