方法: 調用方法 擴展 非原創,原作忘記地址,我是給自己看的 ...
方法:
public static DateTime GetLastDayofMonth(int year, int month) { int days = DateTime.DaysInMonth(year, month); DateTime datetime = new DateTime(year, month, 1); return datetime.AddDays(days - 1); }
調用方法
GetLastDayofMonth(2016, 10).ToString()
擴展
Console.WriteLine("當前月份" + DateTime.Now.Month.ToString()); Console.WriteLine("60天後的日期" + DateTime.Now.AddDays(60));
//兩個月後 DateTime.Now.AddMonths(2).Month
非原創,原作忘記地址,我是給自己看的