BinaryExpressionType Enum

Definition

The types of scalar expressions that have two expressions as children.

[System.Serializable]
public enum BinaryExpressionType
[<System.Serializable>]
type BinaryExpressionType = 
Public Enum BinaryExpressionType
Inheritance
BinaryExpressionType
Attributes

Fields

Add 0

The '+' character, addition.

BitwiseAnd 5

The '&' character, bitwise and.

BitwiseOr 6

The '|' character, bitwise or.

BitwiseXor 7

The '^' character, bitwise exclusive or.

Concat 10

The '||' character, concatenation.

Divide 3

The '/' character, division.

LeftShift 8

The '<<' character, left shift.

Modulo 4

The '%' character, returns the integer remainder of a division.

Multiply 2

The '*' character, multiplication.

RightShift 9

The '>>' character, right shift.

Subtract 1

The '-' character, subtraction.

Applies to