String.Concat Method (String, String)
.NET Framework 4.5
Concatenates two specified instances of String.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Parameters
- str0
- Type: System.String
The first string to concatenate.
- str1
- Type: System.String
The second string to concatenate.
The method concatenates str0 and str1; it does not add any delimiters.
An Empty string is used in place of any null argument.
The following example concatenates a person's first, middle, and last name.
using System; public class ConcatTest { public static void Main() { // we want to simply quickly add this person's name together string fName = "Simon"; string mName = "Jake"; string lName = "Harrows"; // because we want a name to appear with a space in between each name, // put a space on the front of the middle, and last name, allowing for // the fact that a space may already be there mName = " " + mName.Trim(); lName = " " + lName.Trim(); // this line simply concatenates the two strings Console.WriteLine("Welcome to this page, '{0}'!", string.Concat( string.Concat(fName, mName), lName ) ); } }
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.