EnumerableFnsToAggregateString Method Breeze.sharp
Concatenates the string version of each element in a collection using the delimiter provided.

Namespace: Breeze.Sharp.Core
Assembly: Breeze.Sharp (in Breeze.Sharp.dll) Version: 0.6.0.5 (0.6.0.5)
Syntax

public static string ToAggregateString(
	this IEnumerable items,
	string delimiter
)

Parameters

items
Type: System.CollectionsIEnumerable
The enumerated items whose string formated elements will be concatenated
delimiter
Type: SystemString
Delimiter

Return Value

Type: String
A delimited string

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerable. 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

Reference