MegaMan.Common.Geometry.RectangleF.RectangleF C# (CSharp) Метод

RectangleF() публичный Метод

public RectangleF ( float x, float y, float width, float height ) : System
x float
y float
width float
height float
Результат System
        public RectangleF(float x, float y, float width, float height)
        {
            this.x = x;
            this.y = y;
            this.width = width;
            this.height = height;
        }