I want to do the following in C# (coming from a Python background):
strVar = \"stack\" mystr = \"This is %soverflow\" % (strVar)
How do I
Use string.Format:
string.Format
string mystr = string.Format("This is {0}overflow", "stack");