the question is really simple. How do we format strings in C#? this way:
string.Format(\"string goes here with placeholders like {0} {1}\", firstName, lastN
Yes as everybody above has said. But the newly preferred way should be:
$"string goes here {firstName} {lastName}";