ARCed.Scintilla.Document.Equals C# (CSharp) 메소드

Equals() 공개 메소드

Overridden.
public Equals ( object obj ) : bool
obj object Another Document Object
리턴 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);
        }