摘要: /// /// 获取两个时间点间公休天数 /// /// /// /// public static int GetHolidayCount(DateTime startDate, DateTime endDate) { TimeSpan currentTimeSpan = endDate - startDate; double timeCompare = currentTimeSpan.TotalDays; //DayO... 阅读全文
posted @ 2013-08-22 10:29 天殇月痕 阅读(746) 评论(0) 推荐(0)