There is no built-in method for handling this.

[Here's one method][1]

    string myString = "{foo} is {bar} and {yadi} is {yada}".Inject(o);

[Here's another][2]

    Status.Text = "{UserName} last logged in at {LastLoginDate}".FormatWith(user);

[A third improved method partially based on the two above](http://haacked.com/archive/2009/01/04/fun-with-named-formats-string-parsing-and-edge-cases.aspx), from Phil Haack


  [1]: http://mo.notono.us/2008/07/c-stringinject-format-strings-by-key.html
  [2]: http://james.newtonking.com/archive/2008/03/29/formatwith-2-0-string-formatting-with-named-variables.aspx