[This is preliminary documentation and is subject to change.]

Returns a String containing the values in input, separated by delimiter.

Namespace:  Facebook
Assembly:  Facebook (in Facebook.dll) Version: 0.2009.4.13 (0.2009.4.13)

Syntax

C#
public static string ToDelimitedString(
	this IEnumerable input,
	string delimiter
)
Visual Basic (Declaration)
<ExtensionAttribute> _
Public Shared Function ToDelimitedString ( _
	input As IEnumerable, _
	delimiter As String _
) As String
Visual C++
[ExtensionAttribute]
public:
static String^ ToDelimitedString(
	IEnumerable^ input, 
	String^ delimiter
)

Parameters

input
Type: System.Collections..::.IEnumerable
Any collection of values.
delimiter
Type: System..::.String
A String value that will be used to delimited the values in input.

Return Value

A String containing the values in input, separated by delimiter.

Remarks

If a value in input is not a String, the output of the object's ToString()()() method will be used.

See Also

EnumerableExtensions Class
ToDelimitedString Overload
Facebook Namespace