String.Concat Method (Object())
.NET Framework (current version)
Concatenates the string representations of the elements in a specified Object array.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- args
-
Type:
System.Object()
An object array that contains the elements to concatenate.
Return Value
Type: System.StringThe concatenated string representations of the values of the elements in args.
| Exception | Condition |
|---|---|
| ArgumentNullException | args is null. |
| OutOfMemoryException | Out of memory. |
The method concatenates each object in args by calling the parameterless ToString method of that object; it does not add any delimiters.
String.Empty is used in place of any null object in the array.
Notes to Callers:
This method is not called by C++ code. The C++ compiler resolves calls to Concat that have four or more object parameters as a call to Concat(Object, Object, Object, Object).
The following example demonstrates the use of the Concat method with an Object array.
Imports System Public Class ConcatTest Public Shared Sub Main() Dim t1 As New Test1() Dim t2 As New Test2() Dim i As Integer = 16 Dim s As String = "Demonstration" Dim o As Object() = {t1, i, t2, s} ' create a group of objects ' place the objects in an array ' concatenate the objects together as a string. To do this, ' the ToString method in the objects is called Console.WriteLine(String.Concat(o)) End Sub 'Main End Class 'ConcatTest ' imagine these test classes are full-fledged objects... Class Test1 End Class 'Test1 Class Test2 End Class 'Test2
Universal Windows Platform
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Show: