I want to do the following in C# (coming from a Python background):
strVar = \"stack\" mystr = \"This is %soverflow\" % (strVar)
How do I
There's one more way to implement placeholders with string.Replace, oddly helps in certain situations:
mystr = mystr.Replace("%soverflow", strVar);