Concatenates the elements of a specified string array, inserting a separator string between each element pair and yielding a single concatenated string.
A string consisting of the elements of value separated by instances of the separator string.
Type Reason ArgumentNullException value is a null reference.
Documentation for this section has not yet been entered.
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
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Assembly Versions: 1.0.5000.0, 2.0.0.0