System.Linq.Tests.ExceptTests.BothEmpty C# (CSharp) 메소드

BothEmpty() 개인적인 메소드

private BothEmpty ( ) : void
리턴 void
        public void BothEmpty()
        {
            int[] first = { };
            int[] second = { };
            Assert.Empty(first.AsQueryable().Except(second.AsQueryable()));
        }