Abstraction.Rectangle.Rectangle C# (CSharp) Method

Rectangle() public method

public Rectangle ( double width, double height ) : System
width double
height double
return System
        public Rectangle(double? width, double? height)
        {
            this.Width = width;
            this.Height = height;
        }

Same methods

Rectangle::Rectangle ( ) : System