public override int GetHashCode()
 {
     unchecked
     {
         return((Lat.GetHashCode() * 397) ^ Lng.GetHashCode());
     }
 }
Beispiel #2
0
 public override int GetHashCode()
 {
     if (IsEmpty)
     {
         return(0);
     }
     return(((Lng.GetHashCode() ^ Lat.GetHashCode()) ^ WidthLng.GetHashCode()) ^ HeightLat.GetHashCode());
 }