EN
C# / .NET - subtract nanoseconds from DateTime
2 points
In C# / .NET it is possible to subtract nanoseconds from DateTime
object in following way.
xxxxxxxxxx
1
long nanoseconds = 500;
2
3
DateTime time1 = new DateTime(2012, 1, 1, 12, 0, 0, 100);
4
DateTime time2 = time1.AddTicks(-nanoseconds / 100);
5
6
Console.WriteLine($"Old time: {time1:o}");
7
Console.WriteLine($"New time: {time2:o}");
Output:
xxxxxxxxxx
1
Old time: 2012-01-01T12:00:00.1000000
2
New time: 2012-01-01T12:00:00.0999995
Note: maximum precision for DateTime structure is 100 ns, so it is impossible to see difference during operating on times that are smaller than 100 ns.
xxxxxxxxxx
1
long nanoseconds = 500;
2
3
DateTime time1 = new DateTime(2012, 1, 1, 12, 0, 0, 100);
4
DateTime time2 = time1.Subtract(TimeSpan.FromTicks(nanoseconds / 100));
5
6
Console.WriteLine($"Old time: {time1:o}");
7
Console.WriteLine($"New time: {time2:o}");
Output:
xxxxxxxxxx
1
Old time: 2012-01-01T12:00:00.1000000
2
New time: 2012-01-01T12:00:00.0999995
Note: maximum precision for DateTime structure is 100 ns, so it is impossible to see difference during operating on times that are smaller than 100 ns.