Pihrtsoft.Text.RegularExpressions.Linq.PatternBuilder.AppendNotGeneralCategory C# (CSharp) Метод

AppendNotGeneralCategory() публичный Метод

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.
Результат void
        public void AppendNotGeneralCategory(GeneralCategory category)
        {
            AppendGeneralCategory(category, true);
        }