1 write to _regex
System.Text.RegularExpressions (1)
System\Text\RegularExpressions\Match.cs (1)
61_regex = regex;
6 references to _regex
System.Text.RegularExpressions (6)
System\Text\RegularExpressions\GroupCollection.cs (4)
111public Group this[string groupname] => _match._regex is null ? 113GetGroup(_match._regex.GroupNumberFromName(groupname)); 163string groupname = _match._regex!.GroupNameFromNumber(i + 1); 362public bool ContainsKey(string key) => _match._regex!.GroupNumberFromName(key) >= 0;
System\Text\RegularExpressions\Match.cs (2)
163Regex? r = _regex; 203Regex? regex = _regex ?? throw new NotSupportedException(SR.NoResultOnFailed);