1 write to CaptureEnds
System.Text.RegularExpressions (1)
System\Text\RegularExpressions\Symbolic\SymbolicRegexMatcher.cs (1)
1166
CaptureEnds
= (int[])other.CaptureEnds.Clone();
6 references to CaptureEnds
System.Text.RegularExpressions (6)
System\Text\RegularExpressions\Symbolic\SymbolicRegexMatcher.cs (6)
1138
CaptureEnds
[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)
1158
Debug.Assert(
CaptureEnds
.Length == other.CaptureEnds.Length);
1161
Array.Copy(other.CaptureEnds,
CaptureEnds
,
CaptureEnds
.Length);