BsonDateTimeInequality Operator |
Compares two BsonDateTime values.
Namespace:
MongoDB.Bson
Assembly:
MongoDB.Bson (in MongoDB.Bson.dll) Version: 2.7.3+Branch.v2.7.x.Sha.2f1f2be13a23b8520cb9c2ee8439c022f9a03efe
Syntax public static bool operator !=(
BsonDateTime lhs,
BsonDateTime rhs
)
Public Shared Operator <> (
lhs As BsonDateTime,
rhs As BsonDateTime
) As Boolean
static let inline (<>)
lhs : BsonDateTime *
rhs : BsonDateTime : bool
Parameters
- lhs
- Type: MongoDB.BsonBsonDateTime
The first BsonDateTime. - rhs
- Type: MongoDB.BsonBsonDateTime
The other BsonDateTime.
Return Value
Type:
BooleanTrue if the two BsonDateTime values are not equal according to ==.
See Also