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
("string goes here {0} {1}").Format(firstName, lastName);
Yes you can. But what the purpose it will solve?