5 references to Category
System.Text.RegularExpressions (5)
System\Text\RegularExpressions\RegexParser.cs (5)
1963private static bool IsSpecial(char ch) => ch <= '|' && Category[ch] >= S; 1966private static bool IsSpecialOrSpace(char ch) => ch <= '|' && Category[ch] >= W; 1969private static bool IsQuantifier(char ch) => ch <= '{' && Category[ch] == Q; 1972private static bool IsSpace(char ch) => ch <= ' ' && Category[ch] == W; 1982return ch <= '{' && Category[ch] >= Q;