how to pass data into a string code example
Example: insert variables into a string C#
// For Console.WriteLine() and Console.Write() do...
string var0 = "one";
string var1 = "two";
Console.WriteLine("{0} and {1}", var0, var1);
/* Outputs:
one and two