Hacker News new | ask | show | jobs
by intractable 5014 days ago
This is one which had escaped me for years:

    private static bool GreaterThanOne(int @int)
    {
        return @int > 1;
    }
However, it would seem to me to fall into the "never, ever use this" category.