C#中的DateTime、DateTimeOffset和TimeSpan(链接)
下面的微软官方文档,介绍了C#中的DateTime:
其中这里有提到,DateTime的精度为100纳秒:
Time values are measured in 100-nanosecond units called ticks.
DateTime.Ticks Property属性可以返回DateTime代表的100纳秒数。而DateTime(Int64)构造函数,又可以将100纳秒数变回DateTime。
下面的微软官方文档,介绍了C#中的DateTimeOffset:
其中这里有提到,DateTimeOffset的精度为100纳秒:
The time component of a DateTimeOffset value is measured in 100-nanosecond units called ticks
DateTimeOffset.Ticks Property属性可以返回DateTimeOffset代表的100纳秒数。而DateTimeOffset(Int64, TimeSpan)构造函数,又可以将100纳秒数变回DateTimeOffset。
下面的微软官方文档,介绍了C#中的TimeSpan:
其中这里有提到,TimeSpan的精度为100纳秒:
The value of a TimeSpan object is the number of ticks that equal the represented time interval. A tick is equal to 100 nanoseconds, or one ten-millionth of a second.
TimeSpan.Ticks Property属性可以返回TimeSpan代表的100纳秒数。而TimeSpan(Int64)构造函数,又可以将100纳秒数变回TimeSpan。