PegByteParserOneOf(Byte, Byte, Byte, Byte, Byte, Byte) Method |
Matches one of the specified bytes.
Namespace: Altaxo.Main.PegParserAssembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic bool OneOf(
byte c0,
byte c1,
byte c2,
byte c3,
byte c4,
byte c5
)
Parameters
- c0 Byte
- The first byte to match.
- c1 Byte
- The second byte to match.
- c2 Byte
- The third byte to match.
- c3 Byte
- The fourth byte to match.
- c4 Byte
- The fifth byte to match.
- c5 Byte
- The sixth byte to match.
Return Value
Booleantrue if the current byte matches any argument; otherwise,
false.
See Also