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

Size() public method

public Size ( int w, int h ) : System
w int
h int
return System
        public Size(int w, int h)
            : this()
        {
            Width = w;
            Height = h;
        }
Size