AdvancedLauncher.Tools.Win32.User32.HWND.Equals C# (CSharp) Method

Equals() public method

public Equals ( object obj ) : bool
obj object
return bool
        public override bool Equals(object obj)
        {
            if (Object.ReferenceEquals(obj, null)) {
                return handle == IntPtr.Zero;
            } else {
                HWND other = obj as HWND;
                return other != null && Equals(other);
            }
        }

Same methods

HWND::Equals ( HWND other ) : bool