GraphQL.Language.AST.IntValue.Equals C# (CSharp) Method

Equals() protected method

protected Equals ( IntValue other ) : bool
other IntValue
return bool
        protected bool Equals(IntValue other)
        {
            return Value == other.Value;
        }