EN
C# / .NET - add milliseconds to DateTime
12 points
In C# / .NET it is possible to add milliseconds to date in following way.
xxxxxxxxxx
1
DateTime time1 = new DateTime(2000, 1, 1, 12, 00, 00, 500);
2
DateTime time2 = time1.AddMilliseconds(500);
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: 2000-01-01T12:00:01.0000000
Notes:
- time has been printed in console according to iso 8601 standard - check this link for more details.
DateTime.AddMilliseconds
allows to subtract milliseconds by typing negative numbers as argument.