获取 TimeSpan 中的总小时数
如何减去两个日期并获取返回的 TimeSpan 对象的总小时数?
例如,如果 TimeSpan 为 2 天,则总小时数为 48。
How can I subtract two dates and get the total hours of the TimeSpan
object that is returned?
For example, if the TimeSpan is 2 days, the total hours are 48.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
然后您需要
TotalHours
TimeSpan
对象的属性:Then you want the
TotalHours
property of theTimeSpan
object:我是这样做的:
I did it this way: