1 write to _regex
System.Text.RegularExpressions (1)
System\Text\RegularExpressions\Match.cs (1)
54_regex = regex;
6 references to _regex
System.Text.RegularExpressions (6)
System\Text\RegularExpressions\GroupCollection.cs (4)
40public Group this[string groupname] => _match._regex is null ? 42GetGroup(_match._regex.GroupNumberFromName(groupname)); 82string groupname = _match._regex!.GroupNameFromNumber(i + 1); 210public bool ContainsKey(string key) => _match._regex!.GroupNumberFromName(key) >= 0;
System\Text\RegularExpressions\Match.cs (2)
100Regex? r = _regex; 119Regex? regex = _regex ?? throw new NotSupportedException(SR.NoResultOnFailed);