Constructs an empty ByteBuffer with a capacity as specified.

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

Syntax

C#
public ByteBuffer(
	int capacity
)
Visual Basic
Public Sub New ( 
	capacity As Integer
)
Visual C++
public:
ByteBuffer(
	int capacity
)
F#
new : 
        capacity : int -> ByteBuffer

Parameters

capacity
Type: System..::..Int32
Maximum amount of bytes (capacity) this ByteBuffer can hold.

See Also