Uint32Array

Uint32Array(int)

Initializes a new instance of the Uint32Array class.

public Uint32Array(int length)
ParameterTypeDescription
lengthInt32The length (number of elements).

See Also


Uint32Array(uint[])

Initializes a new instance of the Uint32Array class.

public Uint32Array(uint[] data)
ParameterTypeDescription
dataUInt32[]The array data.

See Also


Uint32Array(ArrayBuffer)

Initializes a new instance of the Uint32Array class.

public Uint32Array(ArrayBuffer buffer)
ParameterTypeDescription
bufferArrayBufferThe data buffer.

See Also


Uint32Array(ArrayBuffer, int)

Initializes a new instance of the Uint32Array class.

public Uint32Array(ArrayBuffer buffer, int byteOffset)
ParameterTypeDescription
bufferArrayBufferThe data buffer.
byteOffsetInt32The byte offset.

See Also


Uint32Array(ArrayBuffer, int, int)

Initializes a new instance of the Uint32Array class.

public Uint32Array(ArrayBuffer buffer, int byteOffset, int length)
ParameterTypeDescription
bufferArrayBufferThe data buffer.
byteOffsetInt32The byte offset.
lengthInt32The length.

See Also