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