.NET DateTime/TimeSpan 的刻度有多长?
.NET DateTime/TimeSpan 的刻度有多长?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
.NET DateTime/TimeSpan 的刻度有多长?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
尽管当前一个刻度为 100 纳秒,但最好不要将此视为绝对值。 相反,请使用“
TimeSpan.TicksPerSecond
”(或任何其他 TicksPerXxx 成员值)Although currently a tick is 100 nanoseconds, it is best not to rely on this as an absolute. Rather, use '
TimeSpan.TicksPerSecond
' (or any of the other TicksPerXxx member values)tick 是 .NET 的粒度单位日期时间 和 TimeSpan 值类型。
它有以下常见的转换:
The tick is the unit of granularity for the .NET DateTime and TimeSpan value types.
It has the following common conversions:
引用MSDN:
计量失败。
To quote MSDN:
Metrology fail.
请注意,虽然 DateTime.Now 的理论分辨率相当高,但分辨率(即更新频率)却低得多。
显然,在现代系统上,DateTime.Now 的分辨率为 10 毫秒...请参阅 msdn.microsoft.com/en-us/library/system.datetime.now.aspx
Note that, although the theoretical resolution of DateTime.Now is quite high, the resolution - ie how often it is updated - it quite a bit lower.
Apparently, on modern systems, DateTime.Now has a resolution of 10 milliseconds... See msdn.microsoft.com/en-us/library/system.datetime.now.aspx