Is there a way for the format string used in a call to string.format to contain a { character that is not used for substring insertion?
For example how could I do th
Here's an article that explains how to escape the curly brace in string.format with a few examples and some good reading.
http://msdn.microsoft.com/en-us/netframework/aa569608#Question2
EDIT: Adding useful text to accompany link :)