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