Mono Class Library: System.String Overview | MembersSystem.String.Concat Method |
Concatenates three specified instances of string. [Edit]
|
A string containing the concatenation of str0, str1, and str2. [Edit]
string.Empty is used in place of any null argument. [Edit]
The following example demonstrates concatenating three strings.
C# Example using System; public class StringConcatExample { public static void Main() { string str = String.Concat( "one", "two", "three" ); Console.WriteLine( "The concatenated strings are: {0}", str ); } }The output is
The concatenated strings are: onetwothree
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Assembly Versions: 1.0.5000.0, 2.0.0.0