BibtexLibrary.Tokens.AbstractToken.Equals C# (CSharp) Method

Equals() protected method

protected Equals ( AbstractToken other ) : bool
other AbstractToken
return bool
        protected bool Equals(AbstractToken other)
        {
            return string.Equals(Value, other.Value) && _position == other._position;
        }

Same methods

AbstractToken::Equals ( object obj ) : bool