String.Concat Method (String[])
Concatenates the elements of a specified String array.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- values
- Type: System.String[]
An array of string instances.
Exception | Condition |
---|---|
ArgumentNullException | values is null. |
OutOfMemoryException | Out of memory. |
The method concatenates each object in values; it does not add any delimiters.
String.Empty 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 System; public class ConcatTest { public static void Main() { // make an array of strings. Note that we have included spaces 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, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC, Xbox 360, Zune
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.