Пример #1
0
 private bool Equals(GeoCoordinateWithError other)
 {
     return(Latitude.Equals(other.Latitude) &&
            Longitude.Equals(other.Longitude) &&
            LatitudeError.Equals(other.LatitudeError) &&
            LongitudeError.Equals(other.LongitudeError));
 }
Пример #2
0
 public override int GetHashCode()
 {
     return(Latitude.GetHashCode() ^ Longitude.GetHashCode() ^ LatitudeError.GetHashCode() ^ LongitudeError.GetHashCode());
 }