Click or drag to resize

Decimal128Equals Method (Decimal128, Decimal128)

Determines whether the specified Decimal128 instances are considered equal.

Namespace:  MongoDB.Bson
Assembly:  MongoDB.Bson (in MongoDB.Bson.dll) Version: 2.8.0+cc573f3e1f48f39162b4b680e921a623e127e8fa
Syntax
public static bool Equals(
	Decimal128 x,
	Decimal128 y
)

Parameters

x
Type: MongoDB.BsonDecimal128
The first Decimal128 object to compare.
y
Type: MongoDB.BsonDecimal128
The second Decimal128 object to compare.

Return Value

Type: Boolean
True if the objects are considered equal; otherwise false. If both x and y are null, the method returns true.
See Also