/// <summary>
/// 返回月份拥有的天数
/// </summary>
/// <param name="month"></param>
/// <param name="year"></param>
/// <returns></returns>
public static int GetLastDay(int month, int year)
{
switch (month)
{
case 1:
case 3:
case 5:
case 7:
case 8:
case 10:
case 12:
return 31;
case 2:
return year % 100 != 0 && year % 4 == 0 || year % 400 == 0 ? 29 : 28;
case 4:
case 6:
case 9:
case 11:
return 30;
}
return -1;
}
/// 返回月份拥有的天数
/// </summary>
/// <param name="month"></param>
/// <param name="year"></param>
/// <returns></returns>
public static int GetLastDay(int month, int year)
{
switch (month)
{
case 1:
case 3:
case 5:
case 7:
case 8:
case 10:
case 12:
return 31;
case 2:
return year % 100 != 0 && year % 4 == 0 || year % 400 == 0 ? 29 : 28;
case 4:
case 6:
case 9:
case 11:
return 30;
}
return -1;
}
作者:
火地晋
出处: http://yelaiju.cnblogs.com
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。
出处: http://yelaiju.cnblogs.com
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。