In general, the short circuit or operator || ignores the right side of the or if the left side evaluates to true. Apparently, we've found an exception to this.
Check out the following:
if (foo == null || bar != true ? foo.Count == 0 : true)
{
}
This code throws a null reference exception on the command foo.Count because foo is null. And naturally, the boolean logic allows for this. But, if foo is null you would expect that the or would short circuit and not even evaluate the right side of the expression, but it still does, and it throws an exception.
Is this a bug in my code or in the C# compiler? Is there a part of the C# specification that handles this case?
fooandbar) as you are using them. – Ek0nomik Nov 9 '12 at 17:40if(foo == null || bar || !foo.Any())). I feel that it's much easier to read than your solution, even after adding more parenthesis to have it run as you intended. – Servy Nov 9 '12 at 17:54