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

Equals() protected method

protected Equals ( Field other ) : bool
other Field
return bool
        protected bool Equals(Field other)
        {
            return string.Equals(Name, other.Name) && string.Equals(Alias, other.Alias);
        }