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

Equals() protected method

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