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

Except1() private method

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