System.Linq.Tests.LastTests.ManyElementsLastIsDefault C# (CSharp) Method

ManyElementsLastIsDefault() private method

private ManyElementsLastIsDefault ( ) : void
return void
        public void ManyElementsLastIsDefault()
        {
            int?[] source = { -10, 2, 4, 3, 0, 2, null };
            Assert.Null(source.AsQueryable().Last());
        }