Click or drag to resize

PegCharParserIn(Char, Char, Char, Char, Char, Char, Char, Char) Method

Matches a character within any of the specified inclusive ranges.

Namespace: Altaxo.Main.PegParser
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public bool In(
	char c0,
	char c1,
	char c2,
	char c3,
	char c4,
	char c5,
	char c6,
	char c7
)

Parameters

c0  Char
The lower bound of the first range.
c1  Char
The upper bound of the first range.
c2  Char
The lower bound of the second range.
c3  Char
The upper bound of the second range.
c4  Char
The lower bound of the third range.
c5  Char
The upper bound of the third range.
c6  Char
The lower bound of the fourth range.
c7  Char
The upper bound of the fourth range.

Return Value

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