Concatenates the elements of a specified string array, inserting
a separator string between each element pair and yielding
a single concatenated string.
[Edit]
Parameters
- separator
- A string.
[Edit]
- value
- A string array.
[Edit]
Returns
A string consisting of the elements of value separated
by instances of the separator
string.
[Edit]
Exceptions
Remarks
Example
The following example demonstrates the string.Join(string, String[]) method.
C# Example |
using System;
public class StringJoin {
public static void Main() {
String[] strAry = { "Red" , "Green" , "Blue" };
Console.WriteLine( String.Join( " :: ", strAry ) );
}
}
|
The output is
Red :: Green
:: Blue
Requirements
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Assembly Versions: 1.0.5000.0, 2.0.0.0