Implemented interface member:
22 references to
dotnet-svcutil-lib (3)
FrameworkFork\Microsoft.CodeDom\Microsoft\CSharpCodeProvider.cs (3)
584
if (string.Compare(m.Groups
[
full ? 6 : 1].Value, "warning", StringComparison.OrdinalIgnoreCase) == 0)
588
ce.ErrorNumber = m.Groups
[
full ? 7 : 2].Value;
589
ce.ErrorText = m.Groups
[
full ? 8 : 3].Value;
Microsoft.AspNetCore.Rewrite (1)
BackReferenceCollection.cs (1)
18
_backReferences.Add(references
[
i].Value);
Microsoft.Build (1)
BuildCheck\Infrastructure\EditorConfig\EditorConfigGlobsMatcher.cs (1)
59
if (!int.TryParse(match.Groups
[
i + 1].Value, out int matchedNum) ||
Microsoft.CodeAnalysis (1)
CommandLine\AnalyzerConfig.SectionNameMatching.cs (1)
54
if (!int.TryParse(match.Groups
[
i + 1].Value, out int matchedNum) ||
Microsoft.CodeAnalysis.CodeStyle (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\EditorConfig\Parsing\Sections\SectionMatcher.cs (1)
318
if (!int.TryParse(match.Groups
[
i + 1].Value, out var matchedNum) ||
Microsoft.CodeAnalysis.Workspaces (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\EditorConfig\Parsing\Sections\SectionMatcher.cs (1)
318
if (!int.TryParse(match.Groups
[
i + 1].Value, out var matchedNum) ||
System.Data.Common (2)
src\libraries\Common\src\System\Data\Common\DbConnectionOptions.Common.cs (2)
449
CaptureCollection keyvalues = match.Groups
[
ValueIndex].Captures;
450
foreach (Capture keypair in match.Groups
[
KeyIndex].Captures)
System.Data.Odbc (2)
src\libraries\Common\src\System\Data\Common\DbConnectionOptions.Common.cs (2)
449
CaptureCollection keyvalues = match.Groups
[
ValueIndex].Captures;
450
foreach (Capture keypair in match.Groups
[
KeyIndex].Captures)
System.Text.RegularExpressions (10)
System\Text\RegularExpressions\GroupCollection.cs (7)
103
array.SetValue(this
[
j], i);
124
array[i] = this
[
j];
132
if (EqualityComparer<Group>.Default.Equals(this
[
i], item))
149
get => this
[
index];
190
get => this
[
index];
269
return _collection
[
_index];
282
Group value = _collection
[
_index];
System\Text\RegularExpressions\Match.cs (1)
161
Synchronized(inner.Groups
[
i]);
System\Text\RegularExpressions\Regex.Split.cs (2)
103
state.results.Add(match.Groups
[
i].Value);
131
state.results.Add(match.Groups
[
i].Value);