Skip to content

Instantly share code, notes, and snippets.

@elberthcabrales
Created June 2, 2015 19:31
Show Gist options
  • Save elberthcabrales/58ec036f961c96b5c7b3 to your computer and use it in GitHub Desktop.
Save elberthcabrales/58ec036f961c96b5c7b3 to your computer and use it in GitHub Desktop.
Dim lsA As New List(Of String)
For i = 1 To 10 Step 1
lsA.Add(i)
Next
Dim lsB As New List(Of String)
For i = 11 To 20 Step 1
lsB.Add(i)
Next
lsA = lsA.Concat(lsB).ToList()
For Each l In lsA
MsgBox(l)
Next
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment