1 write to CaptureNames
System.Text.RegularExpressions (1)
System\Text\RegularExpressions\RegexTree.cs (1)
78CaptureNames = captureNames;
8 references to CaptureNames
System.Text.RegularExpressions (8)
System\Text\RegularExpressions\Regex.cs (1)
132capslist = tree.CaptureNames;
System\Text\RegularExpressions\RegexAssemblyCompiler.cs (4)
153if (tree.CaptureNames != null) 160Ldc(tree.CaptureNames.Length); 164for (int i = 0; i < tree.CaptureNames.Length; i++) 168Ldstr(tree.CaptureNames[i]);
System\Text\RegularExpressions\RegexTree.cs (3)
34/// <remarks>This is null iff <see cref="CaptureNames"/> is not null.</remarks> 36/// <summary>A mapping of capture group number to the associated name slot in <see cref="CaptureNames"/>.</summary> 39/// capture group number and the value is the index into <see cref="CaptureNames"/> for that capture group.