Contact: aviboots(AT)netvision.net.il
39,907 questions
51,839 answers
573 users
Module Module1 Sub Main() Dim list As New List(Of Integer) list.Add(1) list.Add(43) list.Add(7) list.Add(999) list.Insert(2, "1000") For Each n In list Console.WriteLine(n) Next End Sub End Module ' run: ' ' 1 ' 43 ' 1000 ' 7 ' 999