Click or drag to resize
StringConcat Method (Object, Object, Object, Object, ...)
Concatenates the string representations of four specified objects and any objects specified in an optional variable length parameter list.

Namespace: System
Assembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax
C#
C# does not support methods that use variable length arguments
(varargs).  The compiler automatically resolves calls to this method to the same method
that uses a parameter array.

Parameters

arg0
Type: SystemObject
The first object to concatenate.
arg1
Type: SystemObject
The second object to concatenate.
arg2
Type: SystemObject
The third object to concatenate.
arg3
Type: SystemObject
The fourth object to concatenate.

Return Value

Type: String
The concatenated string representation of each value in the parameter list.
See Also