System.Linq.Tests.SelectTests.Select_SourceIsArraySkipSelect C# (CSharp) Method

Select_SourceIsArraySkipSelect() private method

private Select_SourceIsArraySkipSelect ( ) : void
return void
        public void Select_SourceIsArraySkipSelect()
        {
            var source = new[] { 1, 2, 3, 4 }.Select(i => i * 2).Skip(1).Select(i => i + 1);
            Assert.Equal(new[] { 5, 7, 9 }, source);
        }
SelectTests