About 326 results
Open links in new tab
  1. dotnet-docs/docs/csharp/language-reference/operators/or-assignment ...

    Jul 20, 2015 · The | operator performs a bitwise logical OR operation on integral operands and logical OR on bool operands. The |= …

  2. dotnet_docs/docs/csharp/language-reference/operators/bitwise

    The ~, &, |, and ^ operators are also defined for any enumeration type. For the operands of the same enumeration type, a logical …

  3. Understanding Bitwise Operators in C# - Medium

    Feb 26, 2024 · Understanding how these operators work and when to use them is crucial for efficient programming, especially in …

  4. Augmented assignment - Wikipedia

    An augmented assignment is generally used to replace a statement where an operator takes a variable as one of its arguments and …

  5. Operators in C and C++ - Wikipedia

    Most of the operators available in C and C++ are also available in other C-family languages such as C#, D, Java, Perl, and PHP with …

  6. Expressions and Operators in C# - Medium

    Jul 22, 2024 · Bitwise OR (|=) assignment P erforms a bitwise OR operation between the variable on the left and the value on the …

  7. docs/docs/csharp/language-reference/operators/bitwise-and-shift ...

    When you overload a binary operator, you also implicitly overload the corresponding compound assignment operator. Beginning with …

  8. docs-2/docs/csharp/language-reference/operators/addition ... - GitHub

    The meaning of the + operator depends on the types of x and y (addition for numeric operands, concatenation for string operands, …

  9. DotNetCore_docs/docs/csharp/language-reference/operators

    The % operator is predefined for numeric types to compute the remainder after division. The %= operator cannot be overloaded …

  10. docs-microsoft/docs/csharp/language-reference/operators/or-assignment ...

    Jul 20, 2015 · - "|= operator (OR assignment) [C#]" The OR assignment operator. An expression using the `|=` assignment operator, …