Data.this

A constructor that creates an object of the Data class with the given parameter in the form of byte array. If called without parameters, then the default parameter is empty unsigned byte array.

class Data
this
(
ubyte[] data = []
)

Parameters

data ubyte[]

Array of unsigned bytes.

Typical usage:

Data data = new Data(0);

Meta