2 instantiations of GroupCollection
System.Text.RegularExpressions (2)
System\Text\RegularExpressions\Match.cs (2)
133
public virtual GroupCollection Groups => _groupcoll ??= new
GroupCollection
(this, null);
472
public override GroupCollection Groups => _groupcoll ??= new
GroupCollection
(this, _caps);
25 references to GroupCollection
Microsoft.AspNetCore.Rewrite (1)
BackReferenceCollection.cs (1)
12
public BackReferenceCollection(
GroupCollection
references)
Microsoft.Build (1)
Evaluation\Expander.cs (1)
3030
GroupCollection
groupCollection = match.Groups;
Microsoft.CodeAnalysis.EditorFeatures (3)
EditorConfigSettings\Updater\SettingsUpdateHelper.cs (3)
177
var
groups = s_optionEntryPattern.Match(curLineText).Groups;
226
static (string untrimmedKey, string key, string value, string severitySuffixInValue, string commentValue) GetGroups(
GroupCollection
groups)
245
var
groups = s_headerPattern.Match(curLineText.Trim()).Groups;
Microsoft.CodeAnalysis.Features (3)
CodeFixes\Configuration\ConfigurationUpdater.cs (2)
456
var
groups = s_optionEntryPattern.Match(curLineText).Groups;
567
var
groups = s_headerPattern.Match(curLineText.Trim()).Groups;
ConvertNumericLiteral\AbstractConvertNumericLiteralCodeRefactoringProvider.cs (1)
134
var
groups = _regex.Match(numericText).Groups;
netstandard (1)
netstandard.cs (1)
2048
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Text.RegularExpressions.
GroupCollection
))]
System (1)
src\libraries\shims\System\ref\System.cs (1)
903
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Text.RegularExpressions.
GroupCollection
))]
System.Text.RegularExpressions (15)
System\Text\RegularExpressions\GroupCollection.cs (10)
17
/// The <see cref="
GroupCollection
" /> class is a zero-based collection class that consists of one or
20
/// <see cref="
GroupCollection
" /> object is returned by the <see cref="Match.Groups" /> property.
63
/// The <see cref="
GroupCollection
" /> object always has at least one member. If a match is
65
/// <see cref="
GroupCollection
" /> object that contains a single member.
74
/// This property is the indexer of the <see cref="
GroupCollection
" />
118
/// <see cref="
GroupCollection
" />.
172
/// Gets a value that indicates whether access to the <see cref="
GroupCollection
" /> is
180
/// <see cref="
GroupCollection
" />.
392
private readonly
GroupCollection
_collection;
395
internal Enumerator(
GroupCollection
collection)
System\Text\RegularExpressions\Match.cs (5)
37
/// <see cref="Groups"/> property that returns the <see cref="
GroupCollection
"/>. The
44
internal
GroupCollection
? _groupcoll;
120
/// The <see cref="
GroupCollection
"/> object returned by the <see cref="Groups"/> property always
133
public virtual
GroupCollection
Groups => _groupcoll ??= new GroupCollection(this, null);
472
public override
GroupCollection
Groups => _groupcoll ??= new GroupCollection(this, _caps);