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