using System;var s1 = "three";var s2 = "two";var s3 = s1 + ", " + s2;s3 += ", one";var sGo = string.Concat(s3, ", ", "go!");//sGo is "three, two, one, go!"Console.WriteLine(sGo);