Click or drag to resize
StringConcatT Method (IEnumerableT)

Namespace: System
Assembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax
C#
public static string Concat<T>(
	IEnumerable<T> values
)

Parameters

values
Type: System.Collections.GenericIEnumerableT
A collection object that implements the IEnumerableT interface.

Type Parameters

T
The type of the members of values.

Return Value

Type: String
The concatenated members in values.
Exceptions
ExceptionCondition
ArgumentNullExceptionvalues is null.
See Also