public bool Equals(Document obj) { if (obj == null) { return(false); } if (orderedKeys.Count != obj.orderedKeys.Count) { return(false); } return(this.GetHashCode() == obj.GetHashCode()); }
public bool Equals(Document obj) { if (obj == null) return false; if (orderedKeys.Count != obj.orderedKeys.Count) return false; return this.GetHashCode() == obj.GetHashCode(); }