AcTools.Utils.Helpers.GeoTagsEntry.GetHashCode C# (CSharp) 메소드

GetHashCode() 공개 메소드

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