IBitStreamInitialise Method |
Initialises the stream with an array of bytes. The read methods will return bits from those bytes.
Namespace: VirtualRadar.InterfaceAssembly: VirtualRadar.Interface (in VirtualRadar.Interface.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax void Initialise(
byte[] bytes
)
Sub Initialise (
bytes As Byte()
)
void Initialise(
array<unsigned char>^ bytes
)
abstract Initialise :
bytes : byte[] -> unit
Parameters
- bytes
- Type: SystemByte
Remarks
Calling this method resets the stream to the start of the array passed across. The intention is that the bitstream can be instantiated
once and then re-used many times to read bits from many byte arrays.
See Also