xFunc.Maths.Tokens.FunctionToken.GetHashCode C# (CSharp) Метод

GetHashCode() публичный Метод

Returns a hash code for this instance.
public GetHashCode ( ) : int
Результат int
        public override int GetHashCode()
        {
            int hash = 6949;

            hash = hash * 5437 + function.GetHashCode();
            hash = hash * 5437 + m_countOfParams.GetHashCode();

            return hash;
        }