Valhalla Legends Archive

Programming => General Programming => .NET Platform => Topic started by: Imperceptus on July 28, 2009, 01:49 PM

Title: vb.net for each with step?
Post by: Imperceptus on July 28, 2009, 01:49 PM
I would like to use step in my code like so
            For Each att As objValue In SearchSet Step 2

            Next

but vs2k8 only seems to want to let me do

            For Each att As objValue In SearchSet
            Next

Is what I want to not possible without possibly doing?

            For Counter as Integer = lbound(searchset) to ubound(searchset) step 2
            Next


Thanks in advance
Title: Re: vb.net for each with step?
Post by: MyndFyre on July 28, 2009, 11:27 PM
You can't do this with a For Each loop; For Each is an implicit call to IEnumerable.MoveNext(). 

What you could do is save state:

Dim n As Integer = 0
For Each att As objValue In SearchSet
    n = n + 1
    If n Mod 2 = 0 Then
        Continue
    End If
    ' Other logic
Next


Not terribly good-looking or straightforward, but it could work.
Title: Re: vb.net for each with step?
Post by: Imperceptus on July 30, 2009, 09:18 AM
alrighty, will look into that one. and your right its ugly lol.