2 writes to _text
System (2)
regex\system\text\regularexpressions\RegexCapture.cs (1)
28_text = text;
regex\system\text\regularexpressions\RegexMatch.cs (1)
103_text = text;
10 references to _text
System (10)
regex\system\text\regularexpressions\RegexCapture.cs (5)
65return _text.Substring(_index, _length); 86return _text; 93return _text.Substring(0, _index); 100return _text.Substring(_index + _length, _text.Length - _index - _length);
regex\system\text\regularexpressions\RegexCaptureCollection.cs (1)
150_captures[j] = new Capture(_group._text, _group._caps[j * 2], _group._caps[j * 2 + 1]);
regex\system\text\regularexpressions\RegexGroupCollection.cs (1)
151_groups[i] = new Group(_match._text, _match._matches[i + 1], _match._matchcount[i + 1], groupname);
regex\system\text\regularexpressions\RegexMatch.cs (3)
93System.Diagnostics.Debug.Assert(!(_textbeg < 0 || _textstart < _textbeg || _textend < _textstart || _text.Length < _textend), 139return _regex.Run(false, _length, _text, _textbeg, _textend - _textbeg, _textpos); 182return _text.Substring(matches[(c - 1) * 2], matches[(c * 2) - 1]);