c simple method code to determine if it is a leap year

  • 2020-05-26 09:59:53
  • OfStack


/// <summary>
        ///  Is it a leap year? 
        /// </summary>
        /// <param name="a_year"></param>
        /// <returns></returns>
        public static bool IsLeapYear(int a_year)
        {
            String s;
            DateTime dt;
            try
            {
                s = (a_year.ToString() + "-02-29");
                dt = Convert.ToDateTime(s);
                return true;
            }
            catch
            {
                return false;
            }
        }


Related articles: