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

Equals() protected method

protected Equals ( Argument other ) : bool
other Argument
return bool
        protected bool Equals(Argument other)
        {
            return string.Equals(Name, other.Name);
        }