C# Class CSE.Exps.OpOverloadNames

Contains the names of the methods generated when operator overloading is used
Show file Open project: kcherr1/CSharp-Eval

Public Properties

Property Type Description
ADD string
BANG string
BIT_AND string
BIT_LSHIFT string
BIT_NOT string
BIT_OR string
BIT_RSHIFT string
BIT_XOR string
COV_NARROW string
COV_WIDE string
DEC string
DIV string
EQ string
FALSE string
Flags BindingFlags
GT string
GTE string
INC string
LT string
LTE string
MOD string
MUL string
NEQ string
SUB string
TRUE string
UMINUS string
UPLUS string

Property Details

ADD public static property

Method name generated when the addition operator is overloaded
public static string ADD
return string

BANG public static property

Method name generated when the logical negation operator is overloaded
public static string BANG
return string

BIT_AND public static property

Method name generated when the bitwise and operator is overloaded
public static string BIT_AND
return string

BIT_LSHIFT public static property

Method name generated when the left shift operator is overloaded
public static string BIT_LSHIFT
return string

BIT_NOT public static property

Method name generated when the bitwise negation operator is overloaded
public static string BIT_NOT
return string

BIT_OR public static property

Method name generated when the bitwise or operator is overloaded
public static string BIT_OR
return string

BIT_RSHIFT public static property

Method name generated when the right shift operator is overloaded
public static string BIT_RSHIFT
return string

BIT_XOR public static property

Method name generated when the bitwise xor operator is overloaded
public static string BIT_XOR
return string

COV_NARROW public static property

Method name generated when the explicit coversion operator is overloaded
public static string COV_NARROW
return string

COV_WIDE public static property

Method name generated when the implicit conversion operator is overloaded
public static string COV_WIDE
return string

DEC public static property

Method name generated when the decrement operator is overloaded
public static string DEC
return string

DIV public static property

Method name generated when the division operator is overloaded
public static string DIV
return string

EQ public static property

Method name generated when the equals operator is overloaded
public static string EQ
return string

FALSE public static property

Method name generated when the false operator is overloaded
public static string FALSE
return string

Flags public static property

Binding flags for looking up and invoking an operator overloaded method
public static BindingFlags Flags
return BindingFlags

GT public static property

Method name generated when the greater than operator is overloaded
public static string GT
return string

GTE public static property

Method name generated when the greater than or equal to operator is overloaded
public static string GTE
return string

INC public static property

Method name generated when the increment operator is overloaded
public static string INC
return string

LT public static property

Method name generated when the less than operator is overloaded
public static string LT
return string

LTE public static property

Method name generated when the less than or equal to operator is overloaded
public static string LTE
return string

MOD public static property

Method name generated when the modulus operator is overloaded
public static string MOD
return string

MUL public static property

Method name generated when the multiplication operator is overloaded
public static string MUL
return string

NEQ public static property

Method name generated when the not equals operator is overloaded
public static string NEQ
return string

SUB public static property

Method name generated when the subtraction operator is overloaded
public static string SUB
return string

TRUE public static property

Method name generated when the true operator is overloaded
public static string TRUE
return string

UMINUS public static property

Method name generated when the unary negation operator is overloaded
public static string UMINUS
return string

UPLUS public static property

Method name generated when the unary plus operator is overloaded
public static string UPLUS
return string