gpt4 book ai didi

vb.net - 对于每个,下一个之前的下一个值

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

我想知道是否可以在 Next 语句之前的 For Each 中获取 Next 值的值

如果我有这段代码:

For Each i As String In myStringArray
'Do Something with i
Next

我可以有类似的东西吗,只有我正在做或检查下一个值:

For Each i As String In myStringArray
'Do Something with i
'Check the Next Value of i
Next

最佳答案

你可以反其道而行之,保留最后一项,但要对它采取行动:

Dim last As String = Nothing

For Each i As String In myStringArray
If last IsNot Nothing Then
' Treat last as current, i as next
End If

last = i
Next

关于vb.net - 对于每个,下一个之前的下一个值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18679915/

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