bool foo = true;
// Do this?
if (foo)
{
}
// Or this?
if (foo == true)
{
}
I like one of them and my coworker the other. The result is the same, but what is (more) correct?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Almost everyone I’ve seen expressing an opinion prefers
Indeed, I’ve seen many people criticize the explicit comparison, and I may even have done so myself before now. I’d say the “short” style is idiomatic.
EDIT:
Note that this doesn’t mean that line of code is always incorrect. Consider:
That will compile, but without the “== true” it won’t, as there’s no implicit conversion from
bool?tobool.