如何在C#中的当前日期时间添加秒?

在当前日期时间添加秒,我们AddSeconds()在C#中使用DateTime类的方法。

语法:

    DateTime DateTime.AddSeconds(double);

AddSeconds() 方法接受以秒为单位的秒数,并返回可以解析的DateTime对象,并可以找到更新的日期时间。

C#代码在当前日期时间添加秒

using System;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            //创建DateTime类的对象
            //然后用当前时间进行初始化 
            //使用“现在”"Now"           
            DateTime dt1 = DateTime.Now;

            //打印当前日期时间
            Console.WriteLine("Currnt date time is: " + dt1.ToString());
            
            //另一个DateTime对象,用于存储更新的日期时间
            //增加50秒
            DateTime dt2 = dt1.AddSeconds(50);
            //更新日期时间为 
            Console.WriteLine("Updated date time is: " + dt2.ToString());

            //在时间上增加172800秒(即2天) 
            dt2 = dt1.AddSeconds(172800);
            //更新日期时间为 
            Console.WriteLine("Updated date time is: " + dt2.ToString());

            //只是打印新行
            Console.WriteLine();
        }
    }
}

输出结果

RUN 1:
Currnt date time is: 10/17/2019 5:25:17 PM
Updated date time is: 10/17/2019 5:26:07 PM
Updated date time is: 10/19/2019 5:25:17 PM

RUN 2:
Currnt date time is: 10/17/2019 5:26:05 PM
Updated date time is: 10/17/2019 5:26:55 PM
Updated date time is: 10/19/2019 5:26:05 PM