The predefined decimal comparison operators are:
bool operator ==(decimal x, decimal y);
bool operator !=(decimal x, decimal y);
bool operator <(decimal x, decimal y);
bool operator >(decimal x, decimal y);
bool operator <=(decimal x, decimal y);
bool operator >=(decimal x, decimal y);
Each of these operators compares the numeric values of the two decimal
operands and returns a bool
value that indicates whether the particular relation is true or false. Each
decimal comparison is
equivalent to using the corresponding relational or equality operator of
type System.Decimal.
bool operator ==(decimal x, decimal y);
bool operator !=(decimal x, decimal y);
bool operator <(decimal x, decimal y);
bool operator >(decimal x, decimal y);
bool operator <=(decimal x, decimal y);
bool operator >=(decimal x, decimal y);
Each of these operators compares the numeric values of the two decimal
operands and returns a bool
value that indicates whether the particular relation is true or false. Each
decimal comparison is
equivalent to using the corresponding relational or equality operator of
type System.Decimal.