class Stuff { void Foo(bool f) { if(f && true) // && true is redundant { } if(true && f) // true && is redundant { } } }