【.net core】获取日期集合

1.获取指定年月的日期集合

/// <summary>
/// 获取指定年月的日期集合
/// </summary>
/// <param name="year">指定年</param>
/// <param name="month">指定月</param>
/// <returns>日期集合</returns>
private List<DateTime> GetMouthDays(int year, int month)
{
    List<DateTime> days = new List<DateTime>();
    // 获取当前月份的第一天
    DateTime currentMonthFirstDay = new DateTime(year, month, 1);


    DateTime currentMonthLastDay;
    if (year == DateTime.Now.Year && month == DateTime.Now.Month)
    {//如果选择年月为当前时间年月,获取今天为当前月份的最后一天
        currentMonthLastDay = new DateTime(year, month, DateTime.Now.Day);
    }
    else
    {// 如果选择年月非当前时间年月,获取当前月份的最后一天
        currentMonthLastDay = new DateTime(year, month, DateTime.DaysInMonth(year, month));
    }

    // 创建一个日期列表,包含从当前月份第一天到最后一天的所有日期
    List<DateTime> dateList = new List<DateTime>();
    for (DateTime date = currentMonthFirstDay; date <= currentMonthLastDay; date = date.AddDays(1))
    {
        if (date > DateTime.Now) continue;
        days.Add(date);
    }
    return days;
}

2.获取指定时间间隔的日期集合

/// <summary>
/// 获取指定时间间隔的日期集合
/// </summary>
/// <param name="startDate">指定年</param>
/// <param name="endDate">指定月</param>
/// <returns>日期集合</returns>
private List<DateTime> GetPeriodDays(string startDate, string endDate)
{
    List<DateTime> days = new List<DateTime>();
    // 获取当前月份的第一天
    DateTime currentFirstDay = DateTime.Parse(startDate);


    DateTime currentLastDay = DateTime.Parse(endDate);

    // 创建一个日期列表,包含从当前时间间隔第一天到最后一天的所有日期
    List<DateTime> dateList = new List<DateTime>();
    for (DateTime date = currentFirstDay; date <= currentLastDay; date = date.AddDays(1))
    {
        if (date > DateTime.Now) continue;
        days.Add(date);
    }
    return days;
}

  • 3
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值