7 lines
159 B
Text
7 lines
159 B
Text
|
|
Private Sub Iterate(ByVal list As LinkedList(Of Integer))
|
||
|
|
Dim node = list.First
|
||
|
|
Do Until node Is Nothing
|
||
|
|
node = node.Next
|
||
|
|
Loop
|
||
|
|
End Sub
|