Languages
[Edit]
EN

C# / .NET - add minutes to DateTime

4 points
Created by:
Wade
562

In C# / .NET it is possible to add minutes to date in following way.

DateTime.AddMinutes method example

DateTime time1 = new DateTime(2000, 1, 1, 12, 00, 00, 500);
DateTime time2 = time1.AddMinutes(120);

Console.WriteLine("Time before: " + time1.ToString("o"));
Console.WriteLine("Time after: " + time2.ToString("o"));

Output:

Time before: 2000-01-01T12:00:00.5000000
Time after: 2000-01-01T14:00:00.5000000
Notes: 
  • time has been printed in console according to iso 8601 standard - check this link for more details.
  • DateTime.AddMinutes allows to subtract minutes by typing negative numbers as argument.

References

  1. DateTime.AddMinutes Method - Microsoft Docs
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

C# - DateTime

Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join