String::Join Method

 

Concatenates the elements of a specified array or the members of a collection, using the specified separator between each element or member.

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

NameDescription
System_CAPS_pubmethodSystem_CAPS_staticJoin(String^, IEnumerable<String^>^)

Concatenates the members of a constructed IEnumerable<T> collection of type String, using the specified separator between each member.

System_CAPS_pubmethodSystem_CAPS_staticJoin(String^, array<Object^>^)

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

System_CAPS_pubmethodSystem_CAPS_staticJoin(String^, array<String^>^)

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

System_CAPS_pubmethodSystem_CAPS_staticJoin(String^, array<String^>^, Int32, Int32)

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

System_CAPS_pubmethodSystem_CAPS_staticJoin<T>(String^, IEnumerable<T>^)

Concatenates the members of a collection, using the specified separator between each member.

Return to top
Show: