EN
C# / .NET - subtract month from DateTime
2
points
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