Creates a new string from the concatenation of two specific strings.
[Visual Basic] Overloads Public Shared Function Concat( _ ByVal str0 As String, _ ByVal str1 As String, _ ByVal str2 As String _ ) As String [C#] public static string Concat( string str0, string str1, string str2 ); [C++] public: static String* Concat( String* str0, String* str1, String* str2 ); [JScript] public static function Concat( str0 : String, str1 : String, str2 : String ) : String;
The new string.
The Concat method is used to create new strings from three prior existing specified strings. The empty string is inserted in place of any null strings.
String Class | String Members | System Namespace | String.Concat Overload List