Share via


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

Name Value Description
Add 0

The '+' character, addition.

Subtract 1

The '-' character, subtraction.

Multiply 2

The '*' character, multiplication.

Divide 3

The '/' character, division.

Modulo 4

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

BitwiseAnd 5

The '&' character, bitwise and.

BitwiseOr 6

The '|' character, bitwise or.

BitwiseXor 7

The '^' character, bitwise exclusive or.

LeftShift 8

The '<<' character, left shift.

RightShift 9

The '>>' character, right shift.

Concat 10

The '||' character, concatenation.

Applies to