ARCed.Scintilla.Line.Equals C# (CSharp) Method

Equals() public method

public Equals ( object obj ) : bool
obj object
return bool
        public override bool Equals(object obj)
        {
            var l = obj as Line;
            if (l == null)
                return false;

            return l.Scintilla == Scintilla && l._number == this._number;
        }