Pihrtsoft.Text.RegularExpressions.Linq.PatternBuilder.AppendNotGeneralCategory C# (CSharp) Méthode

AppendNotGeneralCategory() public méthode

Appends a pattern that matches a character that is not from a specified Unicode category.
public AppendNotGeneralCategory ( GeneralCategory category ) : void
category GeneralCategory An enumerated constant that identifies Unicode category.
Résultat void
        public void AppendNotGeneralCategory(GeneralCategory category)
        {
            AppendGeneralCategory(category, true);
        }