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

Equals() public method

Overridden.
public Equals ( object obj ) : bool
obj object Another Document Object
return bool
        public override bool Equals(object obj)
        {
            var d = obj as Document;

            if (this._handle == IntPtr.Zero)
                return false;

            return this._handle.Equals(d._handle);
        }