take a look at the following code I attempted to write inside a constructor:
private Predicate _isValid;
//...
Predicate isVali
this._isValid = isValid ?? (s => true);
Will work :)
It parsed it this way:
this._isValid = (isValid ?? s) => true;
which does not make any sense.
Check out this portion of the C# grammar:
parenthesized-expression: ( expression ) ..... simple-name: identifier type-argument-listopt ..... conditional-or-expression: conditional-and-expression conditional-or-expression || conditional-and-expression null-coalescing-expression: conditional-or-expression conditional-or-expression ?? null-coalescing-expression conditional-expression: null-coalescing-expression null-coalescing-expression ? expression : expression lambda-expression: anonymous-function-signature => anonymous-function-body
Since null-coalescing-expression
terminates with conditional-or-expression
the s
in your example will parse as a simple-name
. By wrapping it in parentheses it can then be parsed as a parenthesized-expression
.