/// <summary> /// Calculates the leap month for a specified year. /// </summary> /// <param name="year">The year.</param> /// <returns></returns> public int GetLeapMonth(int year) { return(hc.GetLeapMonth(year)); }