• C# 输入指定日期获取当前年的第一天 、当前年的最后一天


     1 /// <summary>  
     2 /// 取得当前年的第一天  
     3 /// </summary>  
     4 /// <param name="datetime">要取得月份第一天的时间</param>  
     5 /// <returns></returns>  
     6 private DateTime FirstDayOfYear(DateTime datetime)
     7 {
     8     DateTime AssemblDate = Convert.ToDateTime(datetime.Year + "-" + "01" + "-" + "01");  // 组装当前指定月份
     9     return AssemblDate;  // 返回指定当前月份的第一天
    10 }
    11  
    12 /// <summary>  
    13 /// 取得当前年的最后天  
    14 /// </summary>  
    15 /// <param name="datetime">要取得月份第一天的时间</param>  
    16 /// <returns></returns>  
    17 private DateTime LastDayOfYear(DateTime datetime)
    18 {
    19     DateTime AssemblDate = Convert.ToDateTime(datetime.AddYears(1).Year + "-" + "01" + "-" + "01");  // 组装当前指定月份
    20     return AssemblDate.AddDays(-1);
    21 }
  • 相关阅读:
    C#类型转换
    C#运算符
    SQL视图与触发器
    存储过程
    SQL 变量
    SQL 经典练习题
    字符串函数,数据类型转换,链接查询,纵向查询
    常用的 SQL 函数
    习题整理(1)
    子查询的部分内容
  • 原文地址:https://www.cnblogs.com/qingjiawen/p/16293150.html
Copyright © 2020-2023  润新知