EN
C# / .NET - add year to DateTime
7 points
In C# / .NET it is possible to add years to date in following way.
xxxxxxxxxx
1
DateTime time1 = new DateTime(2000, 1, 1, 12, 00, 00, 500);
2
DateTime time2 = time1.AddYears(10);
3
4
Console.WriteLine("Time before: " + time1.ToString("o"));
5
Console.WriteLine("Time after: " + time2.ToString("o"));
Output:
xxxxxxxxxx
1
Time before: 2000-01-01T12:00:00.5000000
2
Time after: 2010-01-01T12:00:00.5000000
Notes:
- time has been printed in console according to iso 8601 standard - check this link for more details.
DateTime.AddYears
allows to subtract years by typing negative numbers as argument.