Read a number of bits from a position in the data.
Syntax

[C#]

int ReadBits(int offset, int count);

[Visual Basic]

Function ReadBits(offset As Integer, count As Integer) As Integer
Params
Name Description
offset The number of bits offset from Scan0.
count The number of bits to read - between 0 and 32.
return An int containing the value.
Notes

None.

Example

None.