码迷,mamicode.com
首页 > Windows程序 > 详细

C# 常用日期取得

时间:2018-03-13 15:47:23      阅读:269      评论:0      收藏:0      [点我收藏+]

标签:star   color   ddd   inf   first   tar   nmon   结果   ext   

列举一下常用的日期取得方法

    static class DateTimeDemo
    {
        public static DateTime FirstDayOfMonth(this DateTime value)
        {
            return new DateTime(value.Year, value.Month, 1);
        }
        public static DateTime LastDayOfMonth(this DateTime value)
        {
            return value.FirstDayOfMonth().AddMonths(1).AddDays(-1);
        }
        public static DateTime LastSecondOfDay(this DateTime value)
        {
            return value.Date.AddDays(1).AddSeconds(-1);
        }

        public static DateTime FirstDayOfLastMonth(this DateTime value)
        {
            return value.FirstDayOfMonth().AddMonths(-1);
        }
        public static int DaysInMonth(this DateTime value)
        {
            return DateTime.DaysInMonth(value.Year, value.Month);
        }

        public static DateTime DayOfYear(int month, int day)
        {
            return new DateTime(DateTime.Now.Year, month, day);
        }

        public static DateTime DayOfNextMonth(this DateTime value, int month)
        {
            return value.AddMonths(month).AddDays(-1);
        }

        public static DateTime StartOfDay(this DateTime theDate)
        {
            return theDate.Date;
        }

        public static DateTime EndOfDay(this DateTime theDate)
        {
            return theDate.Date.AddDays(1).AddTicks(-1);
        }

        public static DateTime QuarterStart(this DateTime dt)
        {
            return dt.AddMonths(0 - (dt.Month - 1) % 3).AddDays(1 - dt.Day);
        }

        public static DateTime QuarterEnd(this DateTime dt)
        {
            return dt.QuarterStart().AddMonths(3).AddDays(-1);
        }
    }

测试结果:

技术分享图片

 

C# 常用日期取得

标签:star   color   ddd   inf   first   tar   nmon   结果   ext   

原文地址:https://www.cnblogs.com/teyigou/p/8556232.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!