AIMA.Core.Logic.Propositional.Parsing.Ast.BinarySentence.GetHashCode C# (CSharp) Метод

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

public GetHashCode ( ) : int
Результат int
        public override int GetHashCode()
        {
            int result = 17;
            result = 37 * result + first.GetHashCode();
            result = 37 * result + second.GetHashCode();
            return result;
        }