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

Equals() protected method

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