Click or drag to resize

Decimal128GreaterThan Operator

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

Namespace:  MongoDB.Bson
Assembly:  MongoDB.Bson (in MongoDB.Bson.dll) Version: 2.13.1-v2-13-x1+a7f8afe27855f38f4f72157d11ba2ae73895502e
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