AppendCharGroup() 공개 메소드

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