HandCoded.Finance.Date.IsLeapYear C# (CSharp) Method

IsLeapYear() public static method

Determines if a year is a leap year.
public static IsLeapYear ( int year ) : bool
year int The year to test (1900-2099)
return bool
        public static bool IsLeapYear(int year)
        {
            return (DateValue.IsLeapYear (year));
        }