PegByteParserIn(Byte, Byte, Byte, Byte) Method |
Matches a byte within either of the specified inclusive ranges.
Namespace: Altaxo.Main.PegParserAssembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic 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
Booleantrue if the current byte is in either range; otherwise,
false.
See Also