Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在List<>不使用 LINQ 的情况下对 C# 进行分页,因为我使用的是 .NET 框架 3.0。做这个的最好方式是什么?
List<>
我需要做的是从文件夹中读取文件列表并将它们显示在带有分页的网格视图中。
您可以尝试使用 GetRange 操作,我想如果这是必需的。尝试类似:
List<Foo> foos = new List<Foo>(); var items = foos.GetRange(0, 5);
所以这将得到前 5 个元素,你显然想要获取尽可能多的元素。下次从 (count + element) 开始。