System Namespace String Class
Concatenates the String representations of three specified objects.
[ VB ]
<Serializable>
Overloads Public Shared Function Concat ( _
ByVal arg0 As Object, _
ByVal arg1 As Object, _
ByVal arg2 As Object _
) As String
[ C# ]
[ Serializable ]
public static string Concat (
object arg0,
object arg1,
object arg2
);
[ C++ ]
[ Serializable ]
public: static String* Concat (
Object* arg0,
Object* arg1,
Object* arg2
);
[ JScript ]
public Serializable
static function Concat (
arg0 : Object,
arg1 : Object,
arg2 : Object
) : String;
- arg0
- The first Object.
- arg1
- The second Object.
- arg2
- The third Object.
The concatenated String representations of the values of arg0, arg1, and arg2.
An Empty string is used in place of any null argument.
String Members String.Concat Overload List Object Insert Join Remove Replace Split Substring Trim