Constructs a ByteBuffer object from given source with capacity and length set to source length.

Namespace: BasicCard
Assembly: BasicCard (in BasicCard.dll) Version: 2.5.2.0 (2.5.2.0)

Syntax

C#
public ByteBuffer(
	byte[] data
)
Visual Basic
Public Sub New ( 
	data As Byte()
)
Visual C++
public:
ByteBuffer(
	array<unsigned char>^ data
)
F#
new : 
        data : byte[] -> ByteBuffer

Parameters

data
Type: array<System..::..Byte>[]()[][]
Source data to copy into ByteBuffer.

See Also