String.Concat Method
.NET Framework 2.0
Concatenates one or more instances of String, or the String representations of the values of one or more instances of Object.
| Name | Description |
|---|---|
| String.Concat (Object) | Creates the String representation of a specified object. Supported by the .NET Compact Framework. |
| String.Concat (Object[]) | Concatenates the String representations of the elements in a specified Object array. Supported by the .NET Compact Framework. |
| String.Concat (String[]) | Concatenates the elements of a specified String array. Supported by the .NET Compact Framework. |
| String.Concat (Object, Object) | Concatenates the String representations of two specified objects. Supported by the .NET Compact Framework. |
| String.Concat (String, String) | Concatenates two specified instances of String. Supported by the .NET Compact Framework. |
| String.Concat (Object, Object, Object) | Concatenates the String representations of three specified objects. Supported by the .NET Compact Framework. |
| String.Concat (String, String, String) | Concatenates three specified instances of String. Supported by the .NET Compact Framework. |
| String.Concat (Object, Object, Object, Object) | Concatenates the String representations of four specified objects and any objects specified in an optional variable length parameter list. |
| String.Concat (String, String, String, String) | Concatenates four specified instances of String. Supported by the .NET Compact Framework. |