CodeSharp.EventSourcing.Address.GetHashCode C# (CSharp) Method

GetHashCode() public method

Provides a hash code of the Address.
public GetHashCode ( ) : int
return int
        public override int GetHashCode()
        {
            unchecked
            {
                return ((Queue != null ? Queue.GetHashCode() : 0) * 397) ^ (Machine != null ? Machine.GetHashCode() : 0);
            }
        }