1 write to CaptureStarts
System.Text.RegularExpressions (1)
System\Text\RegularExpressions\Symbolic\SymbolicRegexMatcher.cs (1)
1165
CaptureStarts
= (int[])other.CaptureStarts.Clone();
6 references to CaptureStarts
System.Text.RegularExpressions (6)
System\Text\RegularExpressions\Symbolic\SymbolicRegexMatcher.cs (6)
1135
CaptureStarts
[effect.CaptureNumber] = pos;
1147
public Registers Clone() => new Registers((int[])
CaptureStarts
.Clone(), (int[])CaptureEnds.Clone());
1155
if (
CaptureStarts
is not null && CaptureEnds is not null)
1157
Debug.Assert(
CaptureStarts
.Length == other.CaptureStarts.Length);
1160
Array.Copy(other.CaptureStarts,
CaptureStarts
,
CaptureStarts
.Length);