5 references to Category
System.Text.RegularExpressions (5)
System\Text\RegularExpressions\RegexParser.cs (5)
2139
private static bool IsSpecial(char ch) => ch <= '|' &&
Category
[ch] >= S;
2142
private static bool IsSpecialOrSpace(char ch) => ch <= '|' &&
Category
[ch] >= W;
2145
private static bool IsQuantifier(char ch) => ch <= '{' &&
Category
[ch] == Q;
2148
private static bool IsSpace(char ch) => ch <= ' ' &&
Category
[ch] == W;
2158
return ch <= '{' &&
Category
[ch] >= Q;