C# 自特定日期以来的秒数
在 C# 3.0 中,如何获取自 2010 年 1 月 1 日以来的秒数?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
在 C# 3.0 中,如何获取自 2010 年 1 月 1 日以来的秒数?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(6)
是这样的:
为了一个班轮的乐趣:
Goes like this:
For one liner fun:
您可以减去 2 个 DateTime 实例并得到一个 TimeSpan:
You can substract 2 DateTime instances and get a TimeSpan:
只是为了避免时区问题
Just to avoid timezone issues
这实际上取决于您正在使用谁的 2010-Jan-01 以及您是否希望考虑夏令时。
要获取秒数,请使用 TotalSeconds 属性关闭TimeSpan 对象。
It's really a matter of whose 2010-Jan-01 you're using and whether or not you wish to account for daylight savings.
To get the seconds, use the TotalSeconds property off the TimeSpan object.