This documentation is archived and is not being maintained.
String::Concat Method (String, String)
Visual Studio 2010
Concatenates two specified instances of String.
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 namespace System; int 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 = String::Concat( " ", mName->Trim() ); lName = String::Concat( " ", lName->Trim() ); // this line simply concatenates the two strings Console::WriteLine( "Welcome to this page, '{0}'!", String::Concat( String::Concat( fName, mName ), lName ) ); }
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: