BinaryOperatorKind 枚举

定义

二元运算符的枚举。

public enum BinaryOperatorKind
type BinaryOperatorKind = 
Public Enum BinaryOperatorKind
继承
BinaryOperatorKind

字段

Add 8

加运算符。

And 1

逻辑 和 运算符。

Divide 11

div 运算符。

Equal 2

eq 运算符。

GreaterThan 4

gt 运算符。

GreaterThanOrEqual 5

ge 运算符。

Has 13

has 运算符。

LessThan 6

lt 运算符。

LessThanOrEqual 7

le 运算符。

Modulo 12

mod 运算符。

Multiply 10

mul 运算符。

NotEqual 3

ne 运算符。

Or 0

逻辑 或 运算符。

Subtract 9

子运算符。

适用于