The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
String::Concat Method (array<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:
array<System::Object^>^
An object array that contains the elements to concatenate.
Return Value
Type: System::String^The 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^).
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: