Bridge

String..::..Join Method (String, array<String>[]()[][])

Concatenates all the elements of a string array, using the specified separator between each element.

Namespace:  System
Assembly:  Bridge (in Bridge.dll)

Syntax


[TemplateAttribute]
public static string Join(
	string separator,
	params string[] args
)
<TemplateAttribute> _
Public Shared Function Join ( _
	separator As String, _
	ParamArray args As String() _
) As String
[TemplateAttribute]
public:
static String^ Join(
	String^ separator, 
	... array<String^>^ args
)

Parameters

separator
Type: System..::..String
The string to use as a separator. separator is included in the returned string only if value has more than one element.
args
Type: array<System..::..String>[]()[][]

Return Value

A string that consists of the elements in value delimited by the separator string. If value is an empty array, the method returns Empty.

Exceptions


ExceptionCondition
System..::..ArgumentNullExceptionvalue is null.