在两个日期之间的某个工作日获取日期 [英] Get dates on certain weekday between two dates

查看:181
本文介绍了在两个日期之间的某个工作日获取日期的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我收到一个开始和结束 DateTime

I receive a start and end DateTime.

从此,我想在这两个日期之间的所有日期中创建一个列表< DateTime> ,但只在指定的工作日,如星期一。

From this, I want to create a List<DateTime> of all the dates that are between these two dates, but only on specified weekdays, such as the Monday.

推荐答案

Bellow函数返回一个列表< DateTime> ; 包含从 startDate endDate 中的所有日期给予 dayOfWeek

Bellow function return a List<DateTime> contains all dates from startDate to endDate have given dayOfWeek:

public static List<DateTime> Get_DayofWeek_DatesBetween(DateTime startDate, DateTime endDate, DayOfWeek dayOfWeek)
{
    List<DateTime> list = new List<DateTime>();

    // Total dates in given range. "+ 1" include endDate
    double totalDates = (endDate.Date - startDate.Date).TotalDays + 1;

    // Find first "dayOfWeek" date from startDate
    int i = dayOfWeek - startDate.DayOfWeek;
    if (i < 0) i += 7;

    // Add all "dayOfWeek" dates in given range
    for (int j = i; j < totalDates; j += 7) list.Add(startDate.AddDays(j));

    return list;
}

这篇关于在两个日期之间的某个工作日获取日期的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆