String::Concat Method (String^, String^, String^)
.NET Framework (current version)
Concatenates three 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.
- str2
-
Type:
System::String^
The third string to concatenate.
The method concatenates str0, str1, and str2; it does not add any delimiters.
Note |
|---|
You can also use your language's string concatenation operator, such as + in C#, or & and + in Visual Basic) , to concatenate strings. |
An Empty string is used in place of any null argument.
The following example uses the Concat method to concatenate three strings and displays the result.
using namespace System; void main() { String^ s1 = "We went to a bookstore, "; String^ s2 = "a movie, "; String^ s3 = "and a restaurant."; String^ s = String::Concat(s1, s2, s3); Console::WriteLine(s); } // The example displays the following output: // We went to a bookstore, a movie, and a restaurant.
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:
