C#IList 取区间数据

items.skip(5).Take(5).ToList()

如取 从 5索引开始 取5条

注意,需要引用using System.Linq;
原文地址:https://www.cnblogs.com/wdw31210/p/4353003.html