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.21.0+5a9c3311e158910b88195f290e6d4b1b2715d2b2
Syntax public static bool operator >(
Decimal128 x,
Decimal128 y
)
Public Shared Operator > (
x As Decimal128,
y As Decimal128
) As Boolean
static let inline (>)
x : Decimal128 *
y : Decimal128 : bool
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