gpt4 book ai didi

c# - 如何在 for 循环中使用日期时间?

转载 作者:太空宇宙 更新时间:2023-11-03 17:18:42 24 4
gpt4 key购买 nike

如何在 for 循环中使用 datetime

有两个变量duedatereturndate,返回日期为当前日期,duedate加1天等于returndate。

如何在 for 循环中使用它?

最佳答案

你可以使用:

DateTime start = ...;
DateTime finish = ...;

for (DateTime x = start; x <= finish; x = x.AddDays(1))
{
... // use x
}

关于c# - 如何在 for 循环中使用日期时间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5179244/

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