C# 根据月份来确定每月的最大天数

简介: #region 根据月份来确定每月的最大天数 //月份为两位 private int SetDate(string time) { int intYear; int intMonth; int intDay; string
        #region 根据月份来确定每月的最大天数
	//月份为两位
        private int SetDate(string time)
        {
            int intYear;
            int intMonth;
            int intDay;           
            string year = time.Substring(0,4);
            string month = time.Substring(4,2);
            int.TryParse(year, out intYear);
            int.TryParse(month, out intMonth);
            if (intMonth == 02)
            {
                if (intYear % 400 == 0 || (intYear % 4 == 0 && intYear % 100 != 0))//判断是不是闰年  
                {
                    intDay = 29;
                }
                else
                {
                    intDay = 28;
                }
            }
            switch (intMonth)
            {
                case 04:
                case 06:
                case 09:
                case 11: intDay = 30; break;
                default: intDay = 31; break;
            }
            return intDay;
        }
        #endregion

相关文章
|
28天前
获得月份天数
获得月份天数
38 4
|
6月前
指定月份计算最大天数
指定月份计算最大天数
|
6月前
日期工具,校验当年开始年份,结束年份,当月开始日期,结合素日期
日期工具,校验当年开始年份,结束年份,当月开始日期,结合素日期
|
12月前
jeDate可提供选择日期不超过当前日期
jeDate可提供选择日期不超过当前日期
80 1
根据日期获得当天是星期几?
根据日期获得当天是星期几?
79 0
wustojc4005求月份对应的英文名称及天数
wustojc4005求月份对应的英文名称及天数
32 0
判断月份天数
判断月份天数
52 0
1185. 一周中的第几天 : 简单日期统计模拟题
1185. 一周中的第几天 : 简单日期统计模拟题
|
SQL 开发框架 .NET