gpt4 book ai didi

Vb.net - 日期 : How to get start time and end time of the day

转载 作者:行者123 更新时间:2023-12-04 04:35:38 26 4
gpt4 key购买 nike

我们如何在 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/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com