DateTime的ToString方法格式
新建一个.NET Core控制台项目,敲入如下代码:
using System; namespace NetCoreDatetime { class Program { static void Main(string[] args) { DateTime now = DateTime.Now;//当前时间:2019-09-25 15:56:56.673 //yyyy年,MM月,dd日,HH时(24小时制),mm分,ss秒,fff毫秒 string txtDate = now.ToString("yyyy-MM-dd HH:mm:ss.fff");//显示:2019-09-25 15:56:56.673 Console.WriteLine(txtDate); //yyyy年,MM月,dd日,hh时(12小时制),mm分,ss秒,fff毫秒 txtDate = now.ToString("yyyy-MM-dd hh:mm:ss.fff");//显示:2019-09-25 03:56:56.673 Console.WriteLine(txtDate); Console.WriteLine("Press any key to end..."); Console.ReadKey(); } } }
注意格式中,大写HH和小写hh的区别,大写MM和小写mm的区别,不要搞混淆。
参考文献:
Get DateTime.Now with milliseconds precision