我有开始日期和结束日期。我需要计算那里有多少季度以及如果我有2个季度需要显示第一季度的日期和使用C#的第二季度相同的日期
提前致谢
答案 0 :(得分:0)
我猜你需要这样的东西吗?
DateTime curDt = startDate;
while(curDt <= endDate)
{
//curDt is the curent quarter
curDt = curDt.AddMonth(3);//if you define quarter as 3 monthes
}