Click or drag to resize

PegByteParserBitsInto(Int32, Int32, PegByteParserBytesetData, Int32) Method

Reads the specified bit range into an integer and tests it against a byte set.

Namespace: Altaxo.Main.PegParser
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public bool BitsInto(
	int lowBitNo,
	int highBitNo,
	PegByteParserBytesetData toMatch,
	out int into
)

Parameters

lowBitNo  Int32
The first bit number.
highBitNo  Int32
The last bit number.
toMatch  PegByteParserBytesetData
The byte set to test.
into  Int32
Receives the extracted value.

Return Value

Boolean
true if the extracted value matches; otherwise, false.
See Also