public static int GetYearWeekCount(int strYear)
    {
        System.DateTime fDt = DateTime.Parse(strYear.ToString() + "-01-01");
        int k = Convert.ToInt32(fDt.DayOfWeek);//得到该年的第一天是周几 
        if (k == 1)
        {
            int countDay = fDt.AddYears(1).AddDays(-1).DayOfYear;
            int countWeek = countDay / 7 + 1;
            return countWeek;

        }
        else
        {
            int countDay = fDt.AddYears(1).AddDays(-1).DayOfYear;
            int countWeek = countDay / 7 + 2;
            return countWeek;
        }

    }

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-12-23
  • 2022-12-23
  • 2022-01-20
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-10-03
  • 2021-06-01
  • 2022-01-24
相关资源
相似解决方案