String::Concat Method
Concatenates one or more instances of String, or the String representations of the values of one or more instances of Object.
Assembly: mscorlib (in mscorlib.dll)
| Name | Description | |
|---|---|---|
![]() ![]() | Concat(IEnumerable<String^>^) | Concatenates the members of a constructed IEnumerable<T> collection of type String. |
![]() ![]() | Concat(Object^) | Creates the string representation of a specified object. |
![]() ![]() | Concat(Object^, Object^) | Concatenates the string representations of two specified objects. |
![]() ![]() | Concat(Object^, Object^, Object^) | Concatenates the string representations of three specified objects. |
![]() ![]() | Concat(Object^, Object^, Object^, Object^) | Concatenates the string representations of four specified objects and any objects specified in an optional variable length parameter list. |
![]() ![]() | Concat(array<Object^>^) | Concatenates the string representations of the elements in a specified Object array. |
![]() ![]() | Concat(String^, String^) | Concatenates two specified instances of String. |
![]() ![]() | Concat(String^, String^, String^) | Concatenates three specified instances of String. |
![]() ![]() | Concat(String^, String^, String^, String^) | Concatenates four specified instances of String. |
![]() ![]() | Concat(array<String^>^) | Concatenates the elements of a specified String array. |
![]() ![]() | Concat<T>(IEnumerable<T>^) | Concatenates the members of an IEnumerable<T> implementation. |

