gpt4 book ai didi

vb.net - 是否可以查看数据表行中的下一个值?

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

我有一个包含 4 行的数据表。我想将第 1 行中的一列中的值与第 2 行中的值进行比较。与此类似:

For Each row As DataRow in drRows
If row("column") <> row("column") 'I want the second row("column") to be the next row.
'do something else
End If
Next

最佳答案

您跟踪最后一项:

Dim last As DataRow = Nothing

For Each row As DataRow In drRows
If last IsNot Nothing Then
' Compare last with row
End If

last = row
Next

关于vb.net - 是否可以查看数据表行中的下一个值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8436515/

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