Short Circuit

Just like c#, the underlying expression parser supports short-circuit, so expressions like:

(thing != null) AND (thing.part == 5) 

will work even if thing is null

Last updated