Contact: aviboots(AT)netvision.net.il
40,859 questions
53,264 answers
573 users
Module Module1 Sub Main() Dim arr() As Integer = New Integer() {1, 2, 3, 4} Dim s As String s = String.Join(" ", arr) Console.WriteLine(s) End Sub End Module 'run: ' ' 1 2 3 4