NowExpression

NowExpression is one of more than 130 LINQ expressions.

What it is

NowExpression is used to ...

Code example

if (left == null || right == null)
    return null;

return new AndExpression(left, right);

Explanation of the example

If two booleans (left and right) are both not null (line 1), the AND of these two booleans is returned (line 4).