1 write to _match
System (1)
regex\system\text\regularexpressions\RegexGroupCollection.cs (1)
43_match = match;
11 references to _match
System (11)
regex\system\text\regularexpressions\RegexGroupCollection.cs (11)
55return _match; 90return _match._matchcount.Length; 109if (_match._regex == null) 112return GetGroup(_match._regex.GroupNumberFromName(groupname)); 130if (groupnum >= _match._matchcount.Length || groupnum < 0) 143return _match; 148_groups = new Group[_match._matchcount.Length - 1]; 150string groupname = _match._regex.GroupNameFromNumber(i + 1); 151_groups[i] = new Group(_match._text, _match._matches[i + 1], _match._matchcount[i + 1], groupname);