About 79 results
Open links in new tab
  1. Boolean logical operators - AND, OR, NOT, XOR

    Jan 24, 2026 · The conditional logical AND operator && also computes the logical AND of its operands, but it doesn't evaluate the …

  2. Equality operators: == and != | Microsoft Learn

    Aug 12, 2024 · The C++ standard language equal-to and not-equal-to operator syntax and use.

  3. Operators and expressions - List all operators and expression - C# ...

    Jan 24, 2026 · Learn the C# operators and expressions, operator precedence, and operator associativity.

  4. Member access operators: '.' and '->' | Microsoft Learn

    Dec 8, 2021 · The member access operators . and -> are used to refer to members of struct, union, and class types. Member access …

  5. ?? and ??= operators - null-coalescing operators - C# reference

    Jan 24, 2026 · The null-coalescing operator ?? returns the value of its left-hand operand if it's not null. Otherwise, it evaluates the …

  6. ?: operator - the ternary conditional operator - C# reference

    Jan 24, 2026 · Learn about the C# ternary conditional operator, (`?:`), that returns the result of one of the two expressions based on …

  7. The lambda operator - The `=>` operator is used to define a lambda ...

    Jan 24, 2026 · The C# => operator defines lambda expressions and expression bodied members. Lambda expressions define a …

  8. Bitwise and shift operators - perform boolean (AND, NOT, OR, XOR) …

    Jan 24, 2026 · The >> operator performs an arithmetic shift (that is, the value of the most significant bit is propagated to the high …

  9. C++ built-in operators, precedence, and associativity

    Aug 3, 2021 · C++ operator precedence and associativity table The following table shows the precedence and associativity of C++ …

  10. Operator summary | Microsoft Learn

    Mar 29, 2022 · VBA language reference When several operations occur in an expression, each part is evaluated and resolved in a …

  11. Operator Overloading | Microsoft Learn

    Feb 17, 2022 · Learn more about: Operator overloading The operator keyword declares a function specifying what operator-symbol …