Implemented interface member:
method
Remove
System.Collections.Generic.ICollection<T>.Remove(T)
33 references to Remove
GenerateDocumentationAndConfigFiles (1)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\FlowAnalysis\CustomDataFlowAnalysis.cs (1)
95toVisit.Remove(min);
ILCompiler.Compiler (3)
src\runtime\src\coreclr\tools\Common\Compiler\InstructionSetSupport.cs (3)
279_unsupportedInstructionSets.Remove(set); 288_unsupportedInstructionSets.Remove(instructionSet); 301_supportedInstructionSets.Remove(instructionSet);
ILCompiler.ReadyToRun (3)
src\runtime\src\coreclr\tools\Common\Compiler\InstructionSetSupport.cs (3)
279_unsupportedInstructionSets.Remove(set); 288_unsupportedInstructionSets.Remove(instructionSet); 301_supportedInstructionSets.Remove(instructionSet);
Microsoft.AspNetCore.HttpLogging (4)
W3CLoggerOptions.cs (4)
132clonedSet.Remove(HeaderNames.Host); 136clonedSet.Remove(HeaderNames.Referer); 140clonedSet.Remove(HeaderNames.UserAgent); 144clonedSet.Remove(HeaderNames.Cookie);
Microsoft.CodeAnalysis.Analyzers (2)
MetaAnalyzers\Fixers\AnalyzerReleaseTrackingFix.cs (1)
382entriesToAdd.Remove(entriesToAdd.First());
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\FlowAnalysis\CustomDataFlowAnalysis.cs (1)
95toVisit.Remove(min);
Microsoft.CodeAnalysis.AnalyzerUtilities (3)
src\roslyn\src\RoslynAnalyzers\Utilities\FlowAnalysis\FlowAnalysis\Framework\DataFlow\DataFlowAnalysis.cs (2)
216worklist.Remove(blockOrdinal); 253var needsAtLeastOnePass = pendingBlocksNeedingAtLeastOnePass.Remove(blockOrdinal);
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\FlowAnalysis\CustomDataFlowAnalysis.cs (1)
95toVisit.Remove(min);
Microsoft.CodeAnalysis.CodeStyle (1)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\FlowAnalysis\CustomDataFlowAnalysis.cs (1)
95toVisit.Remove(min);
Microsoft.CodeAnalysis.ResxSourceGenerator (1)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\FlowAnalysis\CustomDataFlowAnalysis.cs (1)
95toVisit.Remove(min);
Microsoft.CodeAnalysis.Workspaces (1)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\FlowAnalysis\CustomDataFlowAnalysis.cs (1)
95toVisit.Remove(min);
Microsoft.ML.AutoML (1)
Sweepers\SmacSweeper.cs (1)
401bestK.Remove(worst);
Microsoft.ML.Sweeper (2)
Algorithms\KdoSweeper.cs (1)
438bestK.Remove(worst);
Algorithms\SmacSweeper.cs (1)
392bestK.Remove(worst);
NuGet.Resolver (1)
ResolverInputSort.cs (1)
91if (parentIds.Remove(nextId))
Roslyn.Diagnostics.Analyzers (1)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\FlowAnalysis\CustomDataFlowAnalysis.cs (1)
95toVisit.Remove(min);
System.Collections (9)
System\Collections\Generic\SortedDictionary.cs (2)
92_set.Remove(keyValuePair); 254return _set.Remove(new KeyValuePair<TKey, TValue>(key, default(TValue)!));
System\Collections\Generic\SortedSet.cs (5)
156Remove(item); 1093Remove(item); 1141bool result = Contains(item) ? Remove(item) : Add(item); 1164bool result = Contains(current) ? Remove(current) : Add(current); 1444if (Remove(matches[i]))
System\Collections\Generic\SortedSet.TreeSubSet.cs (2)
84bool ret = _underlying.Remove(item); 104_underlying.Remove(toRemove[i]);