Demonstrate Concat()
/* C#: The Complete Reference by Herbert Schildt Publisher: Osborne/McGraw-Hill (March 8, 2002) ISBN: 0072134852 */ // Demonstrate Concat(). using System; public class ConcatDemo1 { public static void Main() { string result = String.Concat("This ", "is ", "a ", "test ", "of ", "the ", "String ", "class."); Console.WriteLine("result: " + result); } }