BsonInt32Equality Operator  | 
 
            Compares two BsonInt32 values.
            
 
    Namespace: 
   MongoDB.Bson
    Assembly:
   MongoDB.Bson (in MongoDB.Bson.dll) Version: 2.19.1+3a2a09dd959482f665ffbb5df2557ec541597af4
Syntaxpublic static bool operator ==(
	BsonInt32 lhs,
	BsonInt32 rhs
)
Public Shared Operator = ( 
	lhs As BsonInt32,
	rhs As BsonInt32
) As Boolean
static let inline (=)
        lhs : BsonInt32 * 
        rhs : BsonInt32  : boolParameters
- lhs
 - Type: MongoDB.BsonBsonInt32
The first BsonInt32. - rhs
 - Type: MongoDB.BsonBsonInt32
The other BsonInt32. 
Return Value
Type: 
BooleanTrue if the two BsonInt32 values are equal according to ==.
See Also