Languages
[Edit]
EN

C# / .NET - subtract month from DateTime

2 points
Created by:
Root-ssh
175020

In C# / .NET it is possible to subtract month from DateTime object in following way.

DateTime.AddMonths method example

DateTime time1 = new DateTime(2012, 6, 1, 12, 0, 0, 0);
DateTime time2 = time1.AddMonths(-1);

Console.WriteLine($"Old time: {time1:s}");
Console.WriteLine($"New time: {time2:s}");

Output:

Old time: 2012-06-01T12:00:00
New time: 2012-05-01T12:00:00

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