MongoDB.Bson.MaterializedOnDemandBsonArray.CompareTo C# (CSharp) Method

CompareTo() public method

Compares the array to another array.
public CompareTo ( BsonArray other ) : int
other BsonArray The other array.
return int
        public override int CompareTo(BsonArray other)
        {
            EnsureIsMaterialized();
            return base.CompareTo(other);
        }

Same methods

MaterializedOnDemandBsonArray::CompareTo ( BsonValue other ) : int