AdvancedLauncher.Tools.Win32.User32.HWND.Equals C# (CSharp) 메소드

Equals() 공개 메소드

public Equals ( HWND other ) : bool
other HWND
리턴 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