Implemented interface member:
19 references to
dotnet-svcutil-lib (3)
FrameworkFork\Microsoft.CodeDom\Microsoft\CSharpCodeProvider.cs (3)
584if (string.Compare(m.Groups[full ? 6 : 1].Value, "warning", StringComparison.OrdinalIgnoreCase) == 0) 588ce.ErrorNumber = m.Groups[full ? 7 : 2].Value; 589ce.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)
59if (!int.TryParse(match.Groups[i + 1].Value, out int matchedNum) ||
System.Data.Common (2)
src\libraries\Common\src\System\Data\Common\DbConnectionOptions.Common.cs (2)
449CaptureCollection keyvalues = match.Groups[ValueIndex].Captures; 450foreach (Capture keypair in match.Groups[KeyIndex].Captures)
System.Data.Odbc (2)
src\libraries\Common\src\System\Data\Common\DbConnectionOptions.Common.cs (2)
449CaptureCollection keyvalues = match.Groups[ValueIndex].Captures; 450foreach (Capture keypair in match.Groups[KeyIndex].Captures)
System.Text.RegularExpressions (10)
System\Text\RegularExpressions\GroupCollection.cs (7)
103array.SetValue(this[j], i); 124array[i] = this[j]; 132if (EqualityComparer<Group>.Default.Equals(this[i], item)) 149get => this[index]; 190get => this[index]; 269return _collection[_index]; 282Group value = _collection[_index];
System\Text\RegularExpressions\Match.cs (1)
161Synchronized(inner.Groups[i]);
System\Text\RegularExpressions\Regex.Split.cs (2)
103state.results.Add(match.Groups[i].Value); 131state.results.Add(match.Groups[i].Value);