How to add minutes in the current date time in C#

AddMinutes() strategy acknowledges the estimation of the minutes as twofold and returns the DateTime object that can be parsed and refreshed date-time can be found.

C# code to add minutes in current date time

using System;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            //creating an object of DateTime class
            //and, initializing it with the current time 
            //using "Now"           
            DateTime dt1 = DateTime.Now;

            //printing current date time
            Console.WriteLine("Currnt date time is: " + dt1.ToString());
            
            //another DateTime object to store the updated date time
            //adding 15 minutes
            DateTime dt2 = dt1.AddMinutes(15);
            //updated date time is 
            Console.WriteLine("Updated date time is: " + dt2.ToString());

            //adding 2880 minutes (i.e. 2 days) in the time 
            dt2 = dt1.AddMinutes(2880);
            //updated date time is 
            Console.WriteLine("Updated date time is: " + dt2.ToString());

            //just to print a new line
            Console.WriteLine();
        }
    }
}

Output-

RUN 1:
Currnt date time is: 10/17/2019 5:05:43 PM
Updated date time is: 10/17/2019 5:20:43 PM
Updated date time is: 10/19/2019 5:05:43 PM

RUN 2:
Currnt date time is: 10/17/2019 5:06:19 PM
Updated date time is: 10/17/2019 5:21:19 PM
Updated date time is: 10/19/2019 5:06:19 PM

Leave a Comment

error: Alert: Content is protected!!