作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我们如何在 vb.net 中完成此操作:获取一天的开始时间和一天的结束时间
例如
Start DateTime: 05-Nov-2013 00:00:00
End DateTime: 05-Nov-2013 23:59:99
最佳答案
您可以添加 TimeSpan
到这样的日期值:
Dim dateValue As DateTime = DateTime.Now
Dim startTime As DateTime = dateValue.Date + New TimeSpan(0, 0, 0) 'timespan addition not actually needed here
Dim endTime As DateTime = dateValue.Date + New TimeSpan(23, 59, 59)
关于Vb.net - 日期 : How to get start time and end time of the day,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19788821/
我是一名优秀的程序员,十分优秀!