新建一个.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("…