Click or drag to resize

Decimal128Compare Method

Compares two specified Decimal128 values and returns an integer that indicates whether the first value is greater than, less than, or equal to the second value.

Namespace:  MongoDB.Bson
Assembly:  MongoDB.Bson (in MongoDB.Bson.dll) Version: 2.5.0+57.Branch.master.Sha.6a4e00a2d91090c65a9b11364b9ebfdb9c7da076
Syntax
public static int Compare(
	Decimal128 x,
	Decimal128 y
)

Parameters

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

Return Value

Type: Int32
Less than zero if x < y, zero if x == y, and greater than zero if x > y.
See Also