Click or drag to resize

PegByteParserOneOf(Byte, Byte) Method

Matches one of the specified bytes.

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

Parameters

c0  Byte
The first byte to match.
c1  Byte
The second byte to match.

Return Value

Boolean
true if the current byte matches any argument; otherwise, false.
See Also