DateTime的ToString方法格式

新建一個.NET Core控制檯項目,敲入以下代碼:spa

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的區別,不要搞混淆。code

 

參考文獻:blog

Get DateTime.Now with milliseconds precisionci

相關文章
相關標籤/搜索