我有两个日期:
DateTime fromDate = new DateTime(2013,7,27,12,0,0);
DateTime toDate = new DateTime(2013,7,30,12,0,0);
我想通过增加 fromDate 一天从 fromDate 迭代到 toDate,当 fromDate 等于或大于 toDate 时,循环应该中断。我试过这个:
while(fromDate < toDate)
{
fromDate.AddDays(1);
}
但这是一个无限循环,不会停止。我怎样才能做到这一点 ?