Tagged Questions
35
votes
41answers
4k views
Should I use `!IsGood` or `IsGood == false`?
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 ...