String::Concat Method

 

Concatenates one or more instances of String, or the String representations of the values of one or more instances of Object.

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

NameDescription
System_CAPS_pubmethodSystem_CAPS_staticConcat(IEnumerable<String^>^)

Concatenates the members of a constructed IEnumerable<T> collection of type String.

System_CAPS_pubmethodSystem_CAPS_staticConcat(Object^)

Creates the string representation of a specified object.

System_CAPS_pubmethodSystem_CAPS_staticConcat(Object^, Object^)

Concatenates the string representations of two specified objects.

System_CAPS_pubmethodSystem_CAPS_staticConcat(Object^, Object^, Object^)

Concatenates the string representations of three specified objects.

System_CAPS_pubmethodSystem_CAPS_staticConcat(Object^, Object^, Object^, Object^)

Concatenates the string representations of four specified objects and any objects specified in an optional variable length parameter list.

System_CAPS_pubmethodSystem_CAPS_staticConcat(array<Object^>^)

Concatenates the string representations of the elements in a specified Object array.

System_CAPS_pubmethodSystem_CAPS_staticConcat(String^, String^)

Concatenates two specified instances of String.

System_CAPS_pubmethodSystem_CAPS_staticConcat(String^, String^, String^)

Concatenates three specified instances of String.

System_CAPS_pubmethodSystem_CAPS_staticConcat(String^, String^, String^, String^)

Concatenates four specified instances of String.

System_CAPS_pubmethodSystem_CAPS_staticConcat(array<String^>^)

Concatenates the elements of a specified String array.

System_CAPS_pubmethodSystem_CAPS_staticConcat<T>(IEnumerable<T>^)

Concatenates the members of an IEnumerable<T> implementation.

Return to top
Show: