Caclulate Weekdays between two dates
摘要: A way to calculate how many weekdays are there between two dates. 1: public static int GetWeekDays(DateTime startDate, DateTime endDate) 2: { 3: startDate = startDate.Date; 4: endDate = endDate.Date; ...阅读全文
posted @ 2009-08-21 15:59 BFL 阅读(117) | 评论 (0) 编辑
