Click or drag to resize
StringConcat Method (String)
Concatenates the elements of a specified String array.

Namespace: System
Assembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax
C#
public static string Concat(
	params string[] values
)

Parameters

values
Type: SystemString
An array of string instances.

Return Value

Type: String
The concatenated elements of values.
Exceptions
ExceptionCondition
ArgumentNullExceptionvalues is null.
OutOfMemoryExceptionOut of memory.
See Also