Click or drag to resize

Decimal128LessThan Operator

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

Namespace:  MongoDB.Bson
Assembly:  MongoDB.Bson (in MongoDB.Bson.dll) Version: 2.8.0+cc573f3e1f48f39162b4b680e921a623e127e8fa
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