String.Concat Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Concatenates one or more instances of String, or the String representations of the values of one or more instances of Object.
This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.
| Name | Description | |
|---|---|---|
|
Concat<T>(IEnumerable<T>) | Concatenates the members of an IEnumerable<T> implementation. |
|
Concat(Object) | Creates the String representation of a specified object. |
|
Concat(Object[]) | Concatenates the string representations of the elements in a specified Object array. |
|
Concat(IEnumerable<String>) | Concatenates the members of a constructed IEnumerable<T> collection of type String. |
|
Concat(String[]) | Concatenates the elements of a specified String array. |
|
Concat(Object, Object) | Concatenates the string representations of two specified objects. |
|
Concat(String, String) | Concatenates two specified instances of String. |
|
Concat(Object, Object, Object) | Concatenates the String representations of three specified objects. |
|
Concat(String, String, String) | Concatenates three specified instances of String. |
|
Concat(String, String, String, String) | Concatenates four specified instances of String. |
Show: