Beispiel #1
0
 public override int GetHashCode()
 {
     unchecked
     {
         return((Easting.GetHashCode() * 397) ^ Northing.GetHashCode());
     }
 }
Beispiel #2
0
 /// <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);
     }
 }