PowerArgs.Cli.Rectangle.Rectangle C# (CSharp) Method

Rectangle() public method

public Rectangle ( Point location, Size size ) : System
location Point
size Size
return System
        public Rectangle(Point location, Size size)
            : this()
        {
            this.Location = location;
            this.Size = size;
        }

Same methods

Rectangle::Rectangle ( int x, int y, int w, int h ) : System