System.Linq.Tests.ExceptTests.Except2 C# (CSharp) Method

Except2() private method

private Except2 ( ) : void
return void
        public void Except2()
        {
            var count = (new int[] { 0, 1, 2 }).AsQueryable().Except((new int[] { 1, 2, 3 }).AsQueryable(), EqualityComparer<int>.Default).Count();
            Assert.Equal(1, count);
        }
    }