System.Linq.Tests.IntersectTests.SingleNullWithEmpty C# (CSharp) Méthode

SingleNullWithEmpty() private méthode

private SingleNullWithEmpty ( ) : void
Résultat void
        public void SingleNullWithEmpty()
        {
            string[] first = { null };
            string[] second = new string[0];
            Assert.Empty(first.AsQueryable().Intersect(second.AsQueryable(), EqualityComparer<string>.Default));
        }