Logical Operators¶
| Operator | Description | C# Mapping |
|---|---|---|
and |
Logical AND (short-circuit) | && |
or |
Logical OR (short-circuit) | \|\| |
not |
Logical NOT | ! |
Implementation - ✅ Native - Direct mapping.
| Operator | Description | C# Mapping |
|---|---|---|
and |
Logical AND (short-circuit) | && |
or |
Logical OR (short-circuit) | \|\| |
not |
Logical NOT | ! |
Implementation - ✅ Native - Direct mapping.