GetHashCode() public method

public GetHashCode ( ) : int
return int
コード例 #1
0
 public bool Equals(Document obj)
 {
     if (obj == null)
     {
         return(false);
     }
     if (orderedKeys.Count != obj.orderedKeys.Count)
     {
         return(false);
     }
     return(this.GetHashCode() == obj.GetHashCode());
 }
コード例 #2
0
ファイル: Document.cs プロジェクト: jbell/mongodb-csharp
 public bool Equals(Document obj)
 {
     if (obj == null)
         return false;
     if (orderedKeys.Count != obj.orderedKeys.Count)
         return false;
     return this.GetHashCode() == obj.GetHashCode();
 }