GetHashCode() public method

public GetHashCode ( ) : int
return int
Beispiel #1
0
 public override int GetHashCode()
 {
     unchecked
     {
         var hash = 17;
         hash = hash * 23 + _reachability.GetHashCode();
         return(hash);
     }
 }