Pihrtsoft.Text.RegularExpressions.Linq.PatternBuilder.AppendCharGroup C# (CSharp) Method

AppendCharGroup() private method

private AppendCharGroup ( AsciiChar value, bool negative ) : void
value AsciiChar
negative bool
return void
        internal void AppendCharGroup(AsciiChar value, bool negative)
        {
            AppendCharGroupStart(negative, (int)value);
            Append(value, true);
            AppendCharGroupEnd();
        }

Same methods

PatternBuilder::AppendCharGroup ( AsciiChar value ) : void
PatternBuilder::AppendCharGroup ( CharClass value ) : void
PatternBuilder::AppendCharGroup ( CharGrouping value ) : void
PatternBuilder::AppendCharGroup ( CharGrouping value, bool negative ) : void
PatternBuilder::AppendCharGroup ( GeneralCategory category ) : void
PatternBuilder::AppendCharGroup ( GeneralCategory category, bool negative ) : void
PatternBuilder::AppendCharGroup ( NamedBlock block ) : void
PatternBuilder::AppendCharGroup ( NamedBlock block, bool negative ) : void
PatternBuilder::AppendCharGroup ( char characters, bool negative ) : void
PatternBuilder::AppendCharGroup ( char first, char last ) : void
PatternBuilder::AppendCharGroup ( char first, char last, bool negative ) : void
PatternBuilder::AppendCharGroup ( string characters ) : void
PatternBuilder::AppendCharGroup ( string characters, bool negative ) : void

Usage Example

Example #1
0
 internal override void AppendTo(PatternBuilder builder)
 {
     builder.AppendCharGroup(_value, Negative);
 }
All Usage Examples Of Pihrtsoft.Text.RegularExpressions.Linq.PatternBuilder::AppendCharGroup