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)
55
return
_match
;
90
return
_match
._matchcount.Length;
109
if (
_match
._regex == null)
112
return GetGroup(
_match
._regex.GroupNumberFromName(groupname));
130
if (groupnum >=
_match
._matchcount.Length || groupnum < 0)
143
return
_match
;
148
_groups = new Group[
_match
._matchcount.Length - 1];
150
string groupname =
_match
._regex.GroupNameFromNumber(i + 1);
151
_groups[i] = new Group(
_match
._text,
_match
._matches[i + 1],
_match
._matchcount[i + 1], groupname);