Unpacker Constructor (UnpackerGetWordDelegate, Int32, Int32)

TegoOS

Unpacker Constructor (UnpackerGetWordDelegate, Int32, Int32)
Create an Unpacker which uses a delegate function to get and to decode data from a source.

Namespace: Tego.Utils
Assembly: Tego (in Tego.dll) Version: 1.0.6599.21663 (1.2017.413.1)
Syntax
public Unpacker(
	UnpackerGetWordDelegate getter,
	int startAddress,
	int startBitAddress
)
Public Sub New ( 
	getter As UnpackerGetWordDelegate,
	startAddress As Integer,
	startBitAddress As Integer
)
public:
Unpacker(
	UnpackerGetWordDelegate^ getter, 
	int startAddress, 
	int startBitAddress
)
new : 
        getter : UnpackerGetWordDelegate * 
        startAddress : int * 
        startBitAddress : int -> Unpacker

Parameters

getter
Type: Tego.UtilsUnpackerGetWordDelegate
Delegate which provides a word from a given word address.
startAddress
Type: SystemInt32
The word address of the start of the data to be decoded.
startBitAddress
Type: SystemInt32
The bit address within the StartAddress of the start of the data to be coded : 0=MSB, 15=LSB.
See Also