BinaryOperatorKind 枚举

定义

二元运算符的类型。

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

字段

Add 1

表示“+”运算符。

And 10

表示 C#“&”运算符和 VB“And”运算符。

Concatenate 15

表示用于字符串串联的 VB“&”运算符。

ConditionalAnd 13

表示 C# “&&” 运算符和 VB “AndAlso” 运算符。

ConditionalOr 14

表示 C# “||” 运算符和 VB “OrElse” 运算符。

Divide 4

表示“/”运算符。

Equals 16

表示非对象类型操作数的 C# “==” 运算符和 VB “Is” 运算符和“=” 运算符。

ExclusiveOr 12

表示 C# “^” 运算符和 VB “Xor” 运算符。

GreaterThan 23

表示“”>运算符。

GreaterThanOrEqual 22

表示“=”>运算符。

IntegerDivide 5

表示 VB“”整数除法运算符。

LeftShift 8

表示“”<<运算符。

LessThan 20

表示“”<运算符。

LessThanOrEqual 21

表示“=”<运算符。

Like 24

表示 VB“Like”运算符。

Multiply 3

表示“*”运算符。

None 0

表示未知或错误运算符类型。

NotEquals 18

表示非对象类型操作数的 C# “!=” 运算符和 VB “IsNot” 运算符和“<>” 运算符。

ObjectValueEquals 17

表示对象类型化操作数的 VB“=”运算符。

ObjectValueNotEquals 19

表示对象类型化操作数的 VB“”<>运算符。

Or 11

表示 C# “|” 运算符和 VB “Or” 运算符。

Power 7

表示 VB“^”指数运算符。

Remainder 6

表示 C# '%' 运算符和 VB 'Mod' 运算符。

RightShift 9

表示“”>>运算符。

Subtract 2

表示“-”运算符。

UnsignedRightShift 25

表示“”>>>运算符。

适用于