K2Informatics.Erlnet.Link.GetHashCode C# (CSharp) Méthode

GetHashCode() public méthode

public GetHashCode ( ) : int
Résultat int
        public override int GetHashCode()
        {
            if (hashCodeValue == 0)
            {
                OtpErlangObject.Hash hash = new OtpErlangObject.Hash(5);
                hash.combine(local.GetHashCode() + remote.GetHashCode());
                hashCodeValue = hash.valueOf();
            }
            return hashCodeValue;
        }