Property | Type | Description | |
---|---|---|---|
_trueOrNot | bool |
Method | Description | |
---|---|---|
Invert ( ) : IExpression |
Produces an expression that is the exact opposite of this expression. The new expression should exclude everything this one includes, and include everything this one excludes.
|
|
ToString ( ) : string | ||
TrueOrNot ( ) : bool |
This tells you whether you want things that match, or things that don't match, this expression.
|
Method | Description | |
---|---|---|
AbstractExpression ( bool trueOrNot ) : System |
This lets you specify whether to negate this expression.
|
protected AbstractExpression ( bool trueOrNot ) : System | ||
trueOrNot | bool | True means look for matches (I.E. ==), /// false means look for non-matches (I.E. !=) |
return | System |