ByteBuffer Constructor

Overload List

ByteBuffer Creates a new empty byte buffer instance.
ByteBuffer(Byte) Creates a new instance of byte buffer and fills it with specified bytes.
ByteBuffer(ByteBuffer) Creates a new instance of byte buffer and copies another byte buffer to it.
ByteBuffer(Int32) Creates a new instance of byte buffer and fills it with count zeros.
ByteBuffer(String) Creates a new instance of byte buffer and fills it byte representations of ASCII characters from a specified string. Every character is added as a LSB byte.
ByteBuffer(Byte, Byte) Creates a new instance of byte buffer and fills it with specified two byte arrays.
ByteBuffer(Byte, Int32) Creates a new instance of byte buffer and fills it with specified count of bytes from a.

See Also