Unpacker Constructor (UInt16[], Int32, Int32, Int32)

TegoOS

Unpacker Constructor (UInt16, Int32, Int32, Int32)
Create an Unpacker which starts decoding from a defined starting point in a given array

Namespace: Tego.Utils
Assembly: Tego (in Tego.dll) Version: 1.0.6599.21663 (1.2017.413.1)
Syntax
public Unpacker(
	ushort[] sourceData,
	int startAddressOfSource,
	int address,
	int bitAddress
)
Public Sub New ( 
	sourceData As UShort(),
	startAddressOfSource As Integer,
	address As Integer,
	bitAddress As Integer
)
public:
Unpacker(
	array<unsigned short>^ sourceData, 
	int startAddressOfSource, 
	int address, 
	int bitAddress
)
new : 
        sourceData : uint16[] * 
        startAddressOfSource : int * 
        address : int * 
        bitAddress : int -> Unpacker

Parameters

sourceData
Type: SystemUInt16
Array containing data to unpack
startAddressOfSource
Type: SystemInt32
The address of the start of the array
address
Type: SystemInt32
Address at which to start unpacking
bitAddress
Type: SystemInt32
Bit within word at which to start unpacking : 0=MSB, 15=LSB
See Also