Implemented interface member:
method
Remove
System.Collections.Generic.ICollection<T>.Remove(T)
19 references to Remove
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.CodeStyle (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\FlowAnalysis\CustomDataFlowAnalysis.cs (1)
96toVisit.Remove(min);
Microsoft.CodeAnalysis.Test.Utilities (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\FlowAnalysis\CustomDataFlowAnalysis.cs (1)
96toVisit.Remove(min);
Microsoft.CodeAnalysis.Workspaces (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\FlowAnalysis\CustomDataFlowAnalysis.cs (1)
96toVisit.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);
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); 1096Remove(item); 1144bool result = Contains(item) ? Remove(item) : Add(item); 1167bool result = Contains(current) ? Remove(current) : Add(current); 1447if (Remove(matches[i]))
System\Collections\Generic\SortedSet.TreeSubSet.cs (2)
84bool ret = _underlying.Remove(item); 103_underlying.Remove(toRemove[^1]);