https://qiita.com/tak001/items/02f0b6fcdb2dbcb66f16#comment-4af231d130a440f2d259
> まともな人の書いたコードの実例を見てみましょう。
>
> Source Browser
> https://source.dot.net/#System.Data.Common/System/Data/SQLTypes/SQLDateTime.cs,6a5cfc2620298dad
>
> private static bool IsLeapYear(int year)
> {
> return year % 4 == 0 && (year % 100 != 0 || year % 400 == 0);
> }

なるほどこれはクソコードではないな