Click or drag to resize

PegByteParserIn(Byte, Byte, Byte, Byte, Byte, Byte) Method

Matches a byte within any 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,
	byte c4,
	byte c5
)

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.
c4  Byte
The lower bound of the third range.
c5  Byte
The upper bound of the third range.

Return Value

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