show/hide this revision's text 4 added 4 characters in body; edited tags

I keep seeing code that does checks like this

if (IsGood == false)
{
   DoSomething();
}

or this

if (IsGood == true)
{
   DoSomething();
}

I hate this syntax, and always use the following syntax.

if (IsGood)
{
   DoSomething();
}

or

if (!IsGood)
{
   DoSomething();
}

Is there any reason to use '== true' or '== false'?

Is it a readability thing? Do people just not understand Boolean variables?

Also, is there any performance difference between the two?

    Post Made Community Wiki by Community

show/hide this revision's text 3 title as a question, formatting

!IsGood vs Should I use `!IsGood` or `IsGood == falsefalse`?

I keep seeing code that does checks like this

if (IsGood == false)
{
   DoSomething();
}

or this

if (IsGood == true)
{
   DoSomething();
}

I hate this syntax, and always the following syntax.

if (IsGood)
{
   DoSomething();
}

or

if (!IsGood)
{
   DoSomething();
}

Is there any reason to use '== == true' or '== false'== false'?

Is it a readability thing? Do people just not understand Boolean variables?

Also, is there any performance difference between the two?

show/hide this revision's text 2 Appropriate for all languages
show/hide this revision's text 1