Combine the string values of the enumerable into an escaped string

Namespace: DotNetNuke.Common.Utilities
Assembly: DotNetNuke (in DotNetNuke.dll)

Syntax

C#
public static string Combine(
	IEnumerable enumerable
)
Visual Basic
Public Shared Function Combine ( 
	enumerable As IEnumerable
) As String

Parameters

enumerable
Type: System.Collections..::..IEnumerable
An IEnumerable of values to combine

Return Value

An escaped string that is seperated using the specified characeter. The escape character is '\'. The string returned by .ToString() is used as the value of each item in the IEnumerable.

Remarks

The seperator char is ','

See Also