| Decimal128LessThanOrEqual Operator  | 
 
            Returns a value indicating whether a specified Decimal128 is less than or equal to another another specified Decimal128.
            
 
    Namespace: 
   MongoDB.Bson
    Assembly:
   MongoDB.Bson (in MongoDB.Bson.dll) Version: 2.22.0+75246110ed1247226fcc7f8eb2c54ffab745693e
 Syntax
Syntaxpublic 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  : boolParameters
- 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
See Also