Click or drag to resize
StringXJoin Method
Return a string which is the concatenation of the strings in the collection. The separator between elements is the string providing this method. Mimics str.join(iterable) in Python.

Namespace: Candlelight
Assembly: Assembly-CSharp-firstpass (in Assembly-CSharp-firstpass.dll) Version: 0.0.0.0
Syntax
C#
public static string Join(
	this string separator,
	IEnumerable<string> strings
)

Parameters

separator
Type: SystemString
Separator that should join strings in the collection.
strings
Type: System.Collections.GenericIEnumerableString
Collection of strings.

Return Value

Type: String
The sequence of Strings concatenated with the delimiter.

Usage Note

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