Implemented interface member:
4 references to Contains
Microsoft.DotNet.Build.Tasks.Feed (1)
src\common\LatestLinksManager.cs (1)
78.Where(asset => !feedConfig.FilenamesToExclude.Contains(Path.GetFileName(asset)))
Microsoft.DotNet.Build.Tasks.Feed.Tests (1)
GeneralTests.cs (1)
35channelConfig.TargetFeeds.Should().Contain(f => f.ContentTypes.Contains(type));
Microsoft.DotNet.Internal.DependencyInjection.Testing (1)
DependencyInjectionValidation.cs (1)
260return s_exemptTypes.Contains(type.FullName) || s_exemptNamespaces.Any(n => type.FullName.StartsWith(n));
System.Collections.Immutable (1)
System\Collections\Immutable\ImmutableList_1.cs (1)
1021bool IList.Contains(object? value) => IsCompatibleObject(value) && this.Contains((T)value!);