I have a string which I want to insert an other string into. For this I use the method string.Format() but it doesn't work since my basestring include {-signs. As soon as I remove them from my string the code works fine.
string baseString = "This is my base string and when it includes {-signs it {0}.";
string insertString = "doesn't work";
string completeString = string.Format(baseString, insertString);
Does someone have a glue about why it doesn't work?