Click or drag to resize

PegByteParserIn(Byte, Byte, Byte, Byte) Method

Matches a byte within either of the specified inclusive ranges.

Namespace: Altaxo.Main.PegParser
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public bool In(
	byte c0,
	byte c1,
	byte c2,
	byte c3
)

Parameters

c0  Byte
The lower bound of the first range.
c1  Byte
The upper bound of the first range.
c2  Byte
The lower bound of the second range.
c3  Byte
The upper bound of the second range.

Return Value

Boolean
true if the current byte is in either range; otherwise, false.
See Also