BsonElementInequality Operator |
Compares two BsonElements.
Namespace:
MongoDB.Bson
Assembly:
MongoDB.Bson (in MongoDB.Bson.dll) Version: 2.6.0+Branch.origin/v2.6.x.Sha.593796a7b35dc59243383bcc684de296a5468f2e
Syntax public static bool operator !=(
BsonElement lhs,
BsonElement rhs
)
Public Shared Operator <> (
lhs As BsonElement,
rhs As BsonElement
) As Boolean
static let inline (<>)
lhs : BsonElement *
rhs : BsonElement : bool
Parameters
- lhs
- Type: MongoDB.BsonBsonElement
The first BsonElement. - rhs
- Type: MongoDB.BsonBsonElement
The other BsonElement.
Return Value
Type:
BooleanTrue if the two BsonElements are not equal (or one is null and the other is not).
See Also