EnumerableExtensionsJoinT(IEnumerableT, Char) Method

Concatenates the items of the source collection into a new string instance using the specified separator between the items.

Definition

Namespace: KGySoft.CoreLibraries
Assembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 9.0.0
C#
public static string Join<T>(
	this IEnumerable<T> source,
	char separator
)

Parameters

source  IEnumerableT
The IEnumerableT to create a string from.
separator  Char
The separator to be used between the items.

Type Parameters

T
The type of the elements of source.

Return Value

String
A string that consists of the elements of the source collection delimited by the specified separator.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerableT. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also