Click or drag to resize

StringExtensionsJoinBy Method

Joins strings the by the specified separator.

Namespace:  CSScriptLib
Assembly:  CSScriptLib (in CSScriptLib.dll) Version: 1.3.2.0
Syntax
C#
public static string JoinBy(
	this IEnumerable<string> values,
	string separator
)

Parameters

values
Type: System.Collections.GenericIEnumerableString
The values.
separator
Type: SystemString
The separator.

Return Value

Type: String

[Missing <returns> documentation for "M:CSScriptLib.StringExtensions.JoinBy(System.Collections.Generic.IEnumerable{System.String},System.String)"]

Usage Note

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