String.Format(”Error {0} occurred.”, nError);

Documentation with example is [here][1].


  [1]: http://blog.stevex.net/index.php/string-formatting-in-csharp/

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

    "Error {myError} occured".Replace("{myError}","This is my error!!!");