AcTools.Utils.Helpers.GeoTagsEntry.GetHashCode C# (CSharp) Méthode

GetHashCode() public méthode

public GetHashCode ( ) : int
Résultat int
        public override int GetHashCode() {
            unchecked {
                return IsEmptyOrInvalid ? 0 :(LatitudeValue.GetHashCode() * 397) ^ LongitudeValue.GetHashCode();
            }
        }