如何计算天数
我有签入年、月、日和签出年、月、日。我无法解决如何计算此范围内有多少天的问题
I have check in year, month, day and check out year, moth, day. I can not solve problem how i can count how many days in this range
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
试试这个:
Try this:
将
DateTime
(或DateTimeOffset
)减去另一个DateTime
将得到TimeSpan
。TimeSpan
结构有一个TotalDays
属性,它应该可以为您提供所需的内容。这里是
TimeSpan< 的 MSDN 页面的链接/代码>。
Subtracting a
DateTime
(or aDateTimeOffset
) from another will result in aTimeSpan
. TheTimeSpan
structure has aTotalDays
property which should give you what you're looking for.Here's a link to the MSDN page for
TimeSpan
.