show/hide this revision's text 2 needed code samples. links alone = no good

There is no built-in method for handling this.

Here's one method

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

Here's another

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

A third improved method partially based on the two above, from Phil Haack

show/hide this revision's text 1

There is no built-in method for handling this. Here's one method and here's another