Click or drag to resize

Decimal128LessThanOrEqual Operator

Returns a value indicating whether a specified Decimal128 is less than or equal to another another specified Decimal128.

Namespace:  MongoDB.Bson
Assembly:  MongoDB.Bson (in MongoDB.Bson.dll) Version: 2.12.2+a4a3888f4fb51bb518b1eb5002effc2d47f2ea6a
Syntax
public static bool operator <=(
	Decimal128 x,
	Decimal128 y
)

Parameters

x
Type: MongoDB.BsonDecimal128
The first value.
y
Type: MongoDB.BsonDecimal128
The second value.

Return Value

Type: Boolean
true if x <= y; otherwise, false.
See Also