///獲取當前時間 DateTime dt = DateTime.Now; ///獲取當前月份第一天 DateTime first = dt.AddDays(-(dt.Day) + 1); ///當前月加1再減一天獲取當前月最后一天 DateTime dt2 = dt.AddMonths(1); DateTime Last = dt2.AddDays(-(dt.Day
int fourbb = int.Parse(bb); --獲取你要的年份或者自己定義轉成int類型 int twob = int.Parse(b);---獲取天數 DateTime dt1 = new DateTime(fourbb, twob, 1);--生成時間自定義年月日 DateTime next2 = dt1.AddMonths(1);--當前月加1 DateTime next3 = next2.AddDays(-1);--下個月1號減一天當前月最后一天
