Is Leap Year
This algorithm finds is input year a leap year.
public static bool IsLeapYear(uint year)
{
return (year % 4 == 0 && (year % 100 != 0 || year % 400 == 0));
}
Example
bool value = IsLeapYear(2016);
Output
true