BsonDateTimeInequality Operator |
Compares two BsonDateTime values.
Namespace:
MongoDB.Bson
Assembly:
MongoDB.Bson (in MongoDB.Bson.dll) Version: 2.18.0+554c799eb1ec8dd732f16c739387f6664df1ba7a
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