MoreLinq
ToDelimitedString Method (source)
NamespacesMoreLinqMoreEnumerableToDelimitedString(IEnumerable<(Of <<'(Single>)>>))
Creates a delimited string from a sequence of values. The delimiter used depends on the current culture of the executing thread.
Declaration Syntax
C#Visual BasicVisual C++
public static string ToDelimitedString(
	this IEnumerable<float> source
)
<ExtensionAttribute> _
Public Shared Function ToDelimitedString ( _
	source As IEnumerable(Of Single) _
) As String
public:
[ExtensionAttribute]
static String^ ToDelimitedString(
	IEnumerable<float>^ source
)
Parameters
source (IEnumerable<(Of <(<'Single>)>)>)
The sequence of items to delimit. Each is converted to a string using the simple ToString() conversion.
Return Value

[Missing <returns> documentation for "M:MoreLinq.MoreEnumerable.ToDelimitedString(System.Collections.Generic.IEnumerable{System.Single})"]

Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerable<(Of <(<'Single>)>)>. When you use instance method syntax to call this method, omit the first parameter.
Remarks
This operator uses immediate execution and effectively buffers the sequence.

Assembly: MoreLinq (Module: MoreLinq.dll) Version: 1.0.16006.0 (1.0.16006.1845)