public Rect(Size? _left, Size? _top, Size? _right, Size? _bottom) { Left = _left; Top = _top; Right = _right; Bottom = _bottom; }
public Rect(Size _all) { All = _all; }