Product Documentation

c-treeDB API for C# - Developers Guide

Previous Topic

Next Topic

Operators

The following operators are allowed in conditional expressions:

  • Mathematical operators
    • + Adds two operands
    • - Subtracts two operands or negates an operand (e.g., -5)
    • * Multiplication
    • / Division
    • % Modulus
  • Relational operators
    • == Equal to
    • != Not equal to
    • < Less than
    • <= Less or equal to
    • > Greater than
    • >= Greater than or equal to
  • Logical operators
    • && And
    • || Or
    • ! Not
  • Binary operators
    • & And
    • | Or
    • ~ Not
    • ^ Xor

TOCIndex