繁体   English   中英

如何在C#.net中选择月份的最后一个日期?

[英]How to get selected month's last date in C#.net?

我正在使用下拉列表在.aspx页面中选择月份。 我必须在.aspx.cs页面中获取所选月份的最后日期。 (有些月份有30天,有些月份有31天)

我怎样才能做到这一点?

不需要自定义计算。

使用System.DateTime.DaysInMonth(yearNum, monthNum)方法查找任何给定月份(也是最后一天)的天数。

它很简单:

//Get days in month 2 (Feb) of year 2011. Returns 28.
int daysInFeb2011 = System.DateTime.DaysInMonth(2011, 2); 

MSDN文档提供了更全面和描述性的示例:

        const int July = 7;
        const int Feb = 2;

        // daysInJuly gets 31.
        int daysInJuly = System.DateTime.DaysInMonth(2001, July);

        // daysInFeb gets 28 because the year 1998 was not a leap year.
        int daysInFeb = System.DateTime.DaysInMonth(1998, Feb);

        // daysInFebLeap gets 29 because the year 1996 was a leap year.
        int daysInFebLeap = System.DateTime.DaysInMonth(1996, Feb);

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM