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

Equals() public method

public Equals ( HWND other ) : bool
other HWND
return bool
        public bool Equals(HWND other)
        {
            if (Object.ReferenceEquals(other, null)) {
                return handle == IntPtr.Zero;
            } else {
                return other.handle == handle;
            }
        }

Same methods

HWND::Equals ( object obj ) : bool