DotNext.Reflection by Roman Sakno

<PackageReference Include="DotNext.Reflection" Version="3.2.1" />

.NET API 162,816 bytes

 BinaryOperator

public enum BinaryOperator
Represents binary operator.
Add = 0

An addition operation, such as a + b, without overflow checking.

An addition operation, such as (a + b), with overflow checking.

And = 2

a & b

Divide = 12

a / b

Equal = 13

a == b

a > b

a >= b

LeftShift = 19

a << b

LessThan = 20

a < b

a <= b

Modulo = 25

a % b

Multiply = 26

A multiply operation, such as (a * b), without overflow checking.

A multiply operation, such as (a * b), with overflow checking.

NotEqual = 35

a != b

Or = 36

a | b

Power = 39

POW(a, b)

a >> b

Subtract = 42

An subtraction operation, such as (a - b), without overflow checking.

A subtraction operation, such as (a - b), with overflow checking.

Xor = 14

a ^ b