Size.this

A constructor that creates an object of the Size class with the given parameter in the form of unsigned value. If called without parameters, then the default parameter is zero.

class Size
this
(
uint size = 0
)

Parameters

size uint

Number of unsigned bytes.

Typical usage:

Size offset = new Size(17);

Meta