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

AppendNegativeCharGroup() public method

Appends a pattern that matches a character that is not in the specified range.
character number is less than character number.
public AppendNegativeCharGroup ( char first, char last ) : void
first char The first character of the range.
last char The last character of the range.
return void
        public void AppendNegativeCharGroup(char first, char last)
        {
            if (last < first)
                throw new ArgumentOutOfRangeException(nameof(last));

            AppendCharGroup(first, last, true);
        }

Same methods

PatternBuilder::AppendNegativeCharGroup ( AsciiChar value ) : void
PatternBuilder::AppendNegativeCharGroup ( CharGrouping value ) : void
PatternBuilder::AppendNegativeCharGroup ( GeneralCategory category ) : void
PatternBuilder::AppendNegativeCharGroup ( NamedBlock block ) : void
PatternBuilder::AppendNegativeCharGroup ( string characters ) : void