2 instantiations of GroupCollection
System.Text.RegularExpressions (2)
System\Text\RegularExpressions\Match.cs (2)
133public virtual GroupCollection Groups => _groupcoll ??= new GroupCollection(this, null); 472public override GroupCollection Groups => _groupcoll ??= new GroupCollection(this, _caps);
25 references to GroupCollection
Microsoft.AspNetCore.Rewrite (1)
BackReferenceCollection.cs (1)
12public BackReferenceCollection(GroupCollection references)
Microsoft.Build (1)
Evaluation\Expander.cs (1)
3030GroupCollection groupCollection = match.Groups;
Microsoft.CodeAnalysis.EditorFeatures (3)
EditorConfigSettings\Updater\SettingsUpdateHelper.cs (3)
177var groups = s_optionEntryPattern.Match(curLineText).Groups; 226static (string untrimmedKey, string key, string value, string severitySuffixInValue, string commentValue) GetGroups(GroupCollection groups) 245var groups = s_headerPattern.Match(curLineText.Trim()).Groups;
Microsoft.CodeAnalysis.Features (3)
CodeFixes\Configuration\ConfigurationUpdater.cs (2)
456var groups = s_optionEntryPattern.Match(curLineText).Groups; 567var groups = s_headerPattern.Match(curLineText.Trim()).Groups;
ConvertNumericLiteral\AbstractConvertNumericLiteralCodeRefactoringProvider.cs (1)
134var 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" />. 392private readonly GroupCollection _collection; 395internal Enumerator(GroupCollection collection)
System\Text\RegularExpressions\Match.cs (5)
37/// <see cref="Groups"/> property that returns the <see cref="GroupCollection"/>. The 44internal GroupCollection? _groupcoll; 120/// The <see cref="GroupCollection"/> object returned by the <see cref="Groups"/> property always 133public virtual GroupCollection Groups => _groupcoll ??= new GroupCollection(this, null); 472public override GroupCollection Groups => _groupcoll ??= new GroupCollection(this, _caps);