With C# 6 you can use String Interpolation to directly add variables into a string.
For example:
string name = "List";
int age = 10;
var str = $"Her name is {name} and she's {age} years old";
Note, the use of the dollar sign ($) before the string format.