System.Linq.Tests.ZipTests.SecondIsNull C# (CSharp) Méthode

SecondIsNull() private méthode

private SecondIsNull ( ) : void
Résultat void
        public void SecondIsNull()
        {
            int[] first = new int[] { 1, 2, 3 };
            IQueryable<int> second = null;
            Assert.Throws<ArgumentNullException>("source2", () => first.AsQueryable().Zip(second, (x, y) => x + y));
        }