1 write to _groups
System (1)
regex\system\text\regularexpressions\RegexGroupCollection.cs (1)
148
_groups
= new Group[_match._matchcount.Length - 1];
4 references to _groups
System (4)
regex\system\text\regularexpressions\RegexGroupCollection.cs (4)
147
if (
_groups
== null) {
149
for (int i = 0; i <
_groups
.Length; i++) {
151
_groups
[i] = new Group(_match._text, _match._matches[i + 1], _match._matchcount[i + 1], groupname);
155
return
_groups
[groupnum - 1];