Concat method with a String array. : String Concatenate « Data Type « VB.Net Tutorial






Imports System

Public Class ConcatTest

    Public Shared Sub Main()
        Dim s As String() = {"hello ", "and ", "welcome ", "to ", "this ", "demo! "}

        Console.WriteLine(String.Concat(s))

        Array.Sort(s)
        Console.WriteLine(String.Concat(s))
    End Sub
End Class








2.27.String Concatenate
2.27.1.String Concatenate
2.27.2.Use the overloaded operator
2.27.3.Create Random String from String array
2.27.4.Concat method with a String array.