This documentation is archived and is not being maintained.
String::Concat Method (array<String>)
Visual Studio 2010
Concatenates the elements of a specified String array.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- values
- Type: array<System::String>
An array of string instances.
| Exception | Condition |
|---|---|
| ArgumentNullException | values is nullptr. |
| OutOfMemoryException | Out of memory. |
The method concatenates each object in values; it does not add any delimiters.
An Empty string is used in place of any null object in the array.
The following example demonstrates the use of the Concat method with a String array.
using namespace System; int main() { // make an array of strings. Note that we have included spaces array<String^>^s = {"hello ","and ","welcome ","to ","this ","demo! "}; // put all the strings together Console::WriteLine( String::Concat( s ) ); // sort the strings, and put them together Array::Sort( s ); Console::WriteLine( String::Concat( s ) ); }
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: