Languages
[Edit]
EN

C# / .NET - subtract days from DateTime

12 points
Created by:
Root-ssh
175020

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

1. DateTime.AddDays method example

DateTime time1 = new DateTime(2012, 1, 20, 12, 0, 0, 0);
DateTime time2 = time1.AddDays(-10);

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

Output:

Old time: 2012-01-20T12:00:00
New time: 2012-01-10T12:00:00

2. DateTime.Subtract method example

DateTime time1 = new DateTime(2012, 1, 20, 12, 0, 0, 0);
DateTime time2 = time1.Subtract(TimeSpan.FromDays(10));

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

Output:

Old time: 2012-01-20T12:00:00
New time: 2012-01-10T12:00:00

References

  1. DateTime.AddDays Method - Microsoft docs
  2. DateTime.Subtract 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