Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
if (some condition) || 
(some other condition)
{
   // do something
}

The above format does not work. Says invalid expression "||".

share|improve this question

3 Answers

up vote 8 down vote accepted

if statements in C# need to be entirely contained in a set of parentheses. Add another set around your two ||ed expressions and that will work fine, even on two lines.

if ((some condition) ||
    (some other condition))
{
    // do something
}
share|improve this answer

You're missing outside parentheses on your if statement. e.g.

if ((some condition) || (some other condition))
{ 
   // do something 
}
share|improve this answer

your brackets are off, should be:

if ((some condition) || 
(some other condition))
{
   // do something
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.