Click or drag to resize
StringConcat Method (Object)
Concatenates the string representations of the elements in a specified Object array.

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

Parameters

args
Type: SystemObject
An object array that contains the elements to concatenate.

Return Value

Type: String
The concatenated string representations of the values of the elements in args.
Exceptions
ExceptionCondition
ArgumentNullExceptionargs is null.
OutOfMemoryExceptionOut of memory.
See Also