Click or drag to resize

PegCharParserOneOf(Char, Char) Method

Matches one of the specified characters.

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

Parameters

c0  Char
The first character to match.
c1  Char
The second character to match.

Return Value

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