string two = "two";
string str = "one " + two + " three";
System.Console.WriteLine(str);
string two = "two";
System.Text.StringBuilder sb = new System.Text.StringBuilder();
sb.Append("one ");
sb.Append(two);
sb.Append(" three");
System.Console.WriteLine(sb.ToString());
string str = sb.ToString();
System.Console.WriteLine(str);
Read more: http://feeds.dzone.com/~r/dzone/snippets/~3/l-AqaNAKW5I/14305