Click or drag to resize

BitStream Constructor (Byte, Int32, Int32)

[This is preliminary documentation and is subject to change.]

A stream that supports writing data smaller than a single byte. This stream also has a built-in compression algorithm that can (optionally) be used to write compressed data.

Namespace:  MLAPI.Serialization
Assembly:  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public BitStream(
	byte[] target,
	int offset,
	int count
)
Request Example View Source

Parameters

target
Type: SystemByte
The buffer containing initial data
offset
Type: SystemInt32
The offset where the data begins
count
Type: SystemInt32
The amount of bytes to copy from the initial data buffer
See Also