public bool Equals(REKT Rectangle)
 {
     return(Rectangle.Left == this._left && Rectangle.Top == this._top && Rectangle.Right == this._right && Rectangle.Bottom == this._bottom);
 }
 public static extern bool GetWindowRect(IntPtr hWnd, out REKT pLpRekt);
 public REKT(REKT Rectangle) : this(Rectangle.Left, Rectangle.Top, Rectangle.Right, Rectangle.Bottom)
 {
 }