Languages
[Edit]
EN

C# / .NET - add month to DateTime

7 points
Created by:
Dharman
518

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

DateTime.AddMonths method example

DateTime time1 = new DateTime(2000, 1, 1, 12, 00, 00, 500);
DateTime time2 = time1.AddMonths(5);

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-06-01T12:00:00.5000000
Notes: 
  • time has been printed in console according to iso 8601 standard - check this link for more details.
  • DateTime.AddMonths allows to subtract months by typing negative numbers as argument.

References

  1. DateTime.AddMonths 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