Click or drag to resize

Decimal128GreaterThanOrEqual Operator

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

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