AppendCharGroup() public method

Appends a pattern that matches a specified character.
public AppendCharGroup ( AsciiChar value ) : void
value AsciiChar An enumerated constant that identifies ASCII character.
return void
Beispiel #1
0
 internal override void AppendTo(PatternBuilder builder)
 {
     builder.AppendCharGroup(_value, Negative);
 }
Beispiel #2
0
 internal override void AppendTo(PatternBuilder builder)
 {
     builder.AppendCharGroup(_firstChar, _lastChar, Negative);
 }