How to VB.NET String.Concat()


VB.Net-Informations.com
SiteMap

Concat in VB.NET String Class using for concat two specified String Object

System.String.Concat(ByVal str1 As String, ByVal str2 As String) As String

String Concat method returns a new String

Parameters:

String str1 : Parameter String

String str2 : Parameter String

Returns:

String : A new String retrun with str1 Concat with str2


Public Class Form1
    Private Sub Button1_Click(ByVal sender As System.Object, _
	ByVal e As System.EventArgs) Handles Button1.Click

        Dim str1 As String
        Dim str2 As String

        str1 = "Concat() "
        str2 = "Test"
        MsgBox(String.Concat(str1, str2))

    End Sub
End Class

When you run this source code you will get "Concat() Test " in message box.


  • Sponsored Program








More Source Code :
|  Home  |   VB.NET  |   C#  |   ASP.NET  |   SiteMap  |   Terms of Use  |   About  |