MongoDB.Bson.MaterializedOnDemandBsonDocument.CompareTo C# (CSharp) 메소드

CompareTo() 공개 메소드

Compares this document to another document.
public CompareTo ( BsonDocument other ) : int
other BsonDocument The other document.
리턴 int
        public override int CompareTo(BsonDocument other)
        {
            EnsureIsMaterialized();
            return base.CompareTo(other);
        }

Same methods

MaterializedOnDemandBsonDocument::CompareTo ( BsonValue other ) : int