Concatenates a specified separator string between the elements of a specified string array, yielding a single concatenated string.
A string consisting of the specified strings in value joined by separator. Returns string.Empty if count is zero, value has no elements, or separator and all the elements of value are Empty.
Type Reason ArgumentOutOfRangeException startIndex plus count is greater than the number of elements in value.
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, 1, 2 ) ); } }The output is
Green :: Blue
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Assembly Versions: 1.0.5000.0, 2.0.0.0