摘要: 1 /// 2 /// 得到一个时间段内周末的天数 3 /// 4 /// 开始时间 5 /// 结束时间 6 /// 7 public double GetWeekEndTotalDays(DateTime stDate,DateTime endDate) 8 { 9 double weekEndCount = 0.000;10 11 if (endDate.Date.ToString() == stDate.... 阅读全文
posted @ 2013-08-16 15:30 wangjj89621 阅读(523) 评论(0) 推荐(0) 编辑