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

Equals() protected method

protected Equals ( SourceLocation other ) : bool
other SourceLocation
return bool
        protected bool Equals(SourceLocation other)
        {
            return Line == other.Line && Column == other.Column;
        }

Same methods

SourceLocation::Equals ( object obj ) : bool