WinRTXamlToolkit.Controls.JournalEntry.GetHashCode C# (CSharp) Method

GetHashCode() public method

Returns a hash code for this instance.
public GetHashCode ( ) : int
return int
        public override int GetHashCode()
        {
            int hash = 17;

            if (this.Parameter != null)
            {
                hash = hash * 23 + this.Parameter.GetHashCode();
            }
            else
            {
                hash = hash * 23;
            }

            hash = hash * 23 + this.SourcePageType.GetHashCode();

            return hash;
        }
    }