public override int GetHashCode() { unchecked { int hashCode = Center.GetHashCode(); hashCode = (hashCode * 397) ^ LongitudeDegrees.GetHashCode(); hashCode = (hashCode * 397) ^ LatitudeDegrees.GetHashCode(); return(hashCode); } }
bool Equals(MapSpan other) { return(Center.Equals(other.Center) && LongitudeDegrees.Equals(other.LongitudeDegrees) && LatitudeDegrees.Equals(other.LatitudeDegrees)); }
bool Equals(RadialRegion other) { return(Center.Equals(other.Center) && LongitudeDegrees.Equals(other.LongitudeDegrees) && LatitudeDegrees.Equals(other.LatitudeDegrees)); }
public override int GetHashCode() { return(LatitudeDegrees.GetHashCode() ^ LongitudeDegrees.GetHashCode() ^ RadiusAU.GetHashCode()); }