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

BothEmpty() private méthode

private BothEmpty ( ) : void
Résultat void
        public void BothEmpty()
        {
            int[] first = { };
            int[] second = { };
            Assert.Empty(first.AsQueryable().Intersect(second.AsQueryable()));
        }