Click or drag to resize

CollectionUtilsImplodeT Method (IEnumerableT, String)

Creates a separated string from the items of a collection. Mostly used for debugging issues.

Namespace:  Slash.Unity.DataBind.Core.Utils
Assembly:  Assembly-CSharp (in Assembly-CSharp.dll) Version: 0.0.0.0
Syntax
public static string Implode<T>(
	this IEnumerable<T> collection,
	string separator
)

Parameters

collection
Type: System.Collections.GenericIEnumerableT
Collection of items to create a string from.
separator
Type: SystemString
String to use to separate the item strings.

Type Parameters

T
Type of items in collection.

Return Value

Type: String

[Missing <returns> documentation for "M:Slash.Unity.DataBind.Core.Utils.CollectionUtils.Implode``1(System.Collections.Generic.IEnumerable{``0},System.String)"]

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