+ 2
They simply hold the place of the variable in plain text eg:
string varDay = "Day"
string varNight = "Night"
Console.Writeline("{0} and {1}", varDay, varNight); outputs:I
"Day and Night"
as opposed to having to write each variable seperated by appropriate operators.



