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.4.1
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