gpt4 book ai didi

vb.net - 在没有 Linq 的情况下分页通用集合

转载 作者:行者123 更新时间:2023-12-04 07:12:44 25 4
gpt4 key购买 nike

我有一个 System.Generic.Collections.List(Of MyCustomClass) 类型的对象。

给定整数变量 pagesize 和 pagenumber,如何只收集 MyCustomClass 的任何单页对象?

这就是我所拥有的。我该如何改进?

'my given collection and paging parameters
Dim AllOfMyCustomClassObjects As System.Collections.Generic.List(Of MyCustomClass) = GIVEN
Dim pagesize As Integer = GIVEN
Dim pagenumber As Integer = GIVEN

'collect current page objects
Dim PageObjects As New System.Collections.Generic.List(Of MyCustomClass)
Dim objcount As Integer = 1
For Each obj As MyCustomClass In AllOfMyCustomClassObjects
If objcount > pagesize * (pagenumber - 1) And count <= pagesize * pagenumber Then
PageObjects.Add(obj)
End If
objcount = objcount + 1
Next

'find total page count
Dim totalpages As Integer = CInt(Math.Floor(objcount / pagesize))
If objcount Mod pagesize > 0 Then
totalpages = totalpages + 1
End If

最佳答案

Generic.List 应该提供 Skip() 和 Take() 方法,所以你可以这样做:

Dim PageObjects As New System.Collections.Generic.List(Of MyCustomClass)
PageObjects = AllOfMyCustomClassObjects.Skip(pagenumber * pagesize).Take(pagesize)

如果“没有 Linq”是指 2.0 框架,我不相信 List(Of T) 支持这些方法。在这种情况下,请像 Jonathan 建议的那样使用 GetRange。

关于vb.net - 在没有 Linq 的情况下分页通用集合,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21232/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com