Bridge

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

Concatenates the elements of an object array, using the specified separator between each element.

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

Syntax


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

Parameters

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

Return Value

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

Exceptions


ExceptionCondition
System..::..ArgumentNullExceptionvalues is null.