EN
C# / .NET - subtract month from DateTime
2 points
In C# / .NET it is possible to subtract month from DateTime
object in following way.
xxxxxxxxxx
1
DateTime time1 = new DateTime(2012, 6, 1, 12, 0, 0, 0);
2
DateTime time2 = time1.AddMonths(-1);
3
4
Console.WriteLine($"Old time: {time1:s}");
5
Console.WriteLine($"New time: {time2:s}");
Output:
xxxxxxxxxx
1
Old time: 2012-06-01T12:00:00
2
New time: 2012-05-01T12:00:00