System.Linq.Tests.ContainsTests.NotPresent C# (CSharp) 메소드

NotPresent() 개인적인 메소드

private NotPresent ( ) : void
리턴 void
        public void NotPresent()
        {
            int[] source = { 8, 10, 3, 0, -8 };
            
            Assert.False(source.AsQueryable().Contains(6));
        }