public override int GetHashCode() { unchecked { return((Easting.GetHashCode() * 397) ^ Northing.GetHashCode()); } }
/// <summary> /// </summary> /// <returns></returns> public override int GetHashCode() { unchecked { var hashCode = Easting.GetHashCode(); hashCode = (hashCode * 397) ^ Northing.GetHashCode(); hashCode = (hashCode * 397) ^ LatZone.GetHashCode(); hashCode = (hashCode * 397) ^ LngZone; return(hashCode); } }