Enum AssignmentOperator
Defines the most common assignment operators for numeric operands.
Namespace: Cuemon
Assembly: Cuemon.Core.dll
Syntax
public enum AssignmentOperator
Remarks
For more information please refer to this Wikibooks article: http://en.wikibooks.org/wiki/C_Sharp_Programming/Operators.
Fields
Name | Description |
---|---|
Addition | An addition compound assignment operation, such as (x += y). |
And | A bitwise or logical AND compound assignment operation, such as (x &= y). |
Assign | An assignment operation, such as (x = y). |
Division | An division compound assignment operation, such as (x /= y). |
ExclusiveOr | A bitwise or logical XOR compound assignment operation, such as (x ^= y). |
LeftShift | A bitwise left-shift compound assignment, such as (x <<= y). |
Multiplication | A multiplication compound assignment operation, such as (x *= y). |
Or | A bitwise or logical OR compound assignment, such as (x |= y). |
Remainder | An arithmetic remainder compound assignment operation, such as (x %= y). |
RightShift | A bitwise left-shift compound assignment, such as (x glt;glt;= y). |
Subtraction | A subtraction compound assignment operation, such as (x -= y). |