Axiom.Core.Rectangle.Rectangle C# (CSharp) Method

Rectangle() public method

public Rectangle ( long left, long top, long right, long bottom ) : System
left long
top long
right long
bottom long
return System
		public Rectangle( long left, long top, long right, long bottom )
		{
			_left = left;
			_top = top;
			_right = right;
			_bottom = bottom;
		}

Same methods

Rectangle::Rectangle ( Rectangle copy ) : System