Click or drag to resize

PegByteParserIn(Byte, Byte) Method

Matches a byte within the specified inclusive range.

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
)

Parameters

c0  Byte
The lower bound of the range.
c1  Byte
The upper bound of the range.

Return Value

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