If I have a List(Of x) and a List(Of y) is it possible to iterate over both at the same time?
Something like
for each _x as X, _y as Y in List(of x
You mean without doing a nested loop?
foreach _x as X in List(of x) foreach _y as Y in List(of y) if _x.item = _y.item then 'do something end if next
Not a VB programmer so my syntax might be wrong but you get the idea.