2 writes to _groups
System.Text.RegularExpressions (2)
System\Text\RegularExpressions\GroupCollection.cs (2)
31
internal void Reset() =>
_groups
= null;
79
_groups
= new Group[_match._matchcount.Length - 1];
4 references to _groups
System.Text.RegularExpressions (4)
System\Text\RegularExpressions\GroupCollection.cs (4)
77
if (
_groups
is null)
80
for (int i = 0; i <
_groups
.Length; i++)
83
_groups
[i] = new Group(_match.Text, _match._matches[i + 1], _match._matchcount[i + 1], groupname);
87
return
_groups
[groupnum - 1];