我在日期时间中有一个for循环counter
如何不增加。我没有看到原因。你能帮帮我吗?
private void ubGO_Click(object sender, EventArgs e)
{
DateTime startDate = udteMin.DateTime.Date;
DateTime endDate = udteMax.DateTime.Date;
for (DateTime counter = startDate; counter <= endDate; counter.AddDays(1))
{
MessageBox.Show(counter.Date.ToString() + " " + counter.AddDays(1).Date.ToString());
}
}
答案 0 :(得分:7)
AddDays
返回一个新的DateTime对象。它不会改变你现有的。您需要使用AddDays的结果重新分配计数器
counter = counter.AddDays(1);