GetHashCode() 공개 메소드

public GetHashCode ( ) : int
리턴 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
 public bool Equals(Document obj)
 {
     if (obj == null)
         return false;
     if (orderedKeys.Count != obj.orderedKeys.Count)
         return false;
     return this.GetHashCode() == obj.GetHashCode();
 }