Table of Contents

Class Size

Namespace
SharpConsoleUI.Helpers
Assembly
SharpConsoleUI.dll

Represents a size with width and height dimensions.

public class Size
Inheritance
Size
Inherited Members

Constructors

Size(int, int)

Initializes a new instance of the Size class with the specified dimensions.

public Size(int width, int height)

Parameters

width int

The width dimension.

height int

The height dimension.

Properties

Height

Gets or sets the height dimension.

public int Height { get; set; }

Property Value

int

Width

Gets or sets the width dimension.

public int Width { get; set; }

Property Value

int