C#获取当前时间的字符串yyyyMMdd

 

using System;

namespace DateTimeExample
{
    class Program
    {
        static void Main(string[] args)
        {
            // 获取当前时间
            DateTime now = DateTime.Now;

            // 格式化日期为 yyyyMMdd
            string formattedDate = now.ToString("yyyyMMdd");

            // 输出结果
            Console.WriteLine(formattedDate);
        }
    }
}

 

 

 

################

posted @ 2024-07-31 19:26  西北逍遥  阅读(64)  评论(0编辑  收藏  举报