show/hide this revision's text 2 Added example with Replace()
String.Format(”Error {0} occurred.”, nError);

Documentation with example is here.

If you want a String replacement for {name} you can always use

"Error {myError} occured".Replace("{myError}","This is my error!!!");
show/hide this revision's text 1
String.Format(”Error {0} occurred.”, nError);

Documentation with example is here.