Created
June 2, 2015 19:31
-
-
Save elberthcabrales/58ec036f961c96b5c7b3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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