Click or drag to resize

PegCharParserIChar(Char, Char, Char, Char, Char, Char, Char) Method

Matches the specified seven-character literal case-insensitively.

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

Parameters

c1  Char
The first character to match.
c2  Char
The second character to match.
c3  Char
The third character to match.
c4  Char
The fourth character to match.
c5  Char
The fifth character to match.
c6  Char
The sixth character to match.
c7  Char
The seventh character to match.

Return Value

Boolean
true if all characters match; otherwise, false.
See Also