public Rct(Rct rectangle) : this(rectangle.Left, rectangle.Top, rectangle.Right, rectangle.Bottom) { }
public static extern bool GetWindowRect(IntPtr hWnd, out Rct lpRct);
public bool Equals(Rct rectangle) { return(rectangle.Left == _Left && rectangle.Top == _Top && rectangle.Right == _Right && rectangle.Bottom == _Bottom); }