AcTools.Utils.Helpers.GeoTagsEntry.Equals C# (CSharp) Method

Equals() protected method

protected Equals ( GeoTagsEntry other ) : bool
other GeoTagsEntry
return bool
        protected bool Equals(GeoTagsEntry other) {
            if (other == null) return false;
            return IsEmptyOrInvalid
                    ? other.IsEmptyOrInvalid
                    : !other.IsEmptyOrInvalid && LatitudeValue.Equals(other.LatitudeValue) && LongitudeValue.Equals(other.LongitudeValue);
        }

Same methods

GeoTagsEntry::Equals ( object obj ) : bool