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