private bool Equals(GeoLocation other) => Latitude.Equals(other.Latitude) &&
                                           Longitude.Equals(other.Longitude);
Example #2
0
 private bool Equals(GeoLocation other) => Latitude.Equals(other.Latitude) &&
 Longitude.Equals(other.Longitude);