if (someVariable == true)
{ ... }
if (someVariable == false)
{ ... }
if (someVariable != false)
{ ... }
Isn't this sufficient:
if (someVariable)
{ ... }
if (!someVariable)
{ ... }
What makes it worse is when I see things like
if (notVisible != false)
{ ... }
How negative do you want to be?

New Topic/Question
Reply





MultiQuote










|