Logo

Programming-Idioms

History of Idiom 163 > diff from v18 to v19

Edit summary for version 19 by EvilGenius:
New VB implementation by user [EvilGenius]

Version 18

2019-09-27, 22:31:12

Version 19

2019-09-27, 22:58:19

Idiom #163 Print list elements by group of 2

Print all the list elements, two by two, assuming list length is even.

Idiom #163 Print list elements by group of 2

Print all the list elements, two by two, assuming list length is even.

Code
Dim ItemList As New List(Of String)(New String() {"one", "one", "two", "two", "three", "three"})
For x = 0 To ItemList.Count - 1 Step 2
    Console.WriteLine(ItemList(x) & vbTab & ItemList(x + 1))
Next