Share via


OperatorKind Enum

Definition

public enum class OperatorKind
public enum OperatorKind
type OperatorKind = 
Public Enum OperatorKind
Inheritance
OperatorKind

Fields

Name Value Description
ImplicitConversion 0

The name assigned to an implicit (widening) conversion.

ExplicitConversion 1

The name assigned to an explicit (narrowing) conversion.

Addition 2

The name assigned to the Addition operator.

BitwiseAnd 3

The name assigned to the BitwiseAnd operator.

BitwiseOr 4

The name assigned to the BitwiseOr operator.

Decrement 5

The name assigned to the Decrement operator.

Division 6

The name assigned to the Division operator.

Equality 7

The name assigned to the Equality operator.

ExclusiveOr 8

The name assigned to the ExclusiveOr operator.

False 9

The name assigned to the False operator.

GreaterThan 10

The name assigned to the GreaterThan operator.

GreaterThanOrEqual 11

The name assigned to the GreaterThanOrEqual operator.

Increment 12

The name assigned to the Increment operator.

Inequality 13

The name assigned to the Inequality operator.

LeftShift 14

The name assigned to the LeftShift operator.

LessThan 15

The name assigned to the LessThan operator.

LessThanOrEqual 16

The name assigned to the LessThanOrEqual operator.

LogicalNot 17

The name assigned to the LogicalNot operator.

Modulus 18

The name assigned to the Modulus operator.

Multiply 19

The name assigned to the Multiply operator.

OnesComplement 20

The name assigned to the OnesComplement operator.

RightShift 21

The name assigned to the RightShift operator.

Subtraction 22

The name assigned to the Subtraction operator.

True 23

The name assigned to the True operator.

UnaryNegation 24

The name assigned to the UnaryNegation operator.

UnaryPlus 25

The name assigned to the UnaryPlus operator.

UnsignedRightShift 26

The name assigned to the UnsignedRightShift operator.

AdditionAssignment 27

The name assigned to the AdditionAssignment operator.

SubtractionAssignment 28

The name assigned to the SubtractionAssignment operator.

MultiplicationAssignment 29

The name assigned to the MultiplicationAssignment operator.

DivisionAssignment 30

The name assigned to the DivisionAssignment operator.

ModulusAssignment 31

The name assigned to the ModulusAssignment operator.

ExclusiveOrAssignment 32

The name assigned to the ExclusiveOrAssignment operator.

BitwiseAndAssignment 33

The name assigned to the BitwiseAndAssignment operator.

BitwiseOrAssignment 34

The name assigned to the BitwiseOrAssignment operator.

LeftShiftAssignment 35

The name assigned to the LeftShiftAssignment operator.

RightShiftAssignment 36

The name assigned to the RightShiftAssignment operator.

UnsignedRightShiftAssignment 37

The name assigned to the UnsignedRightShiftAssignment operator.

Applies to