show/hide this revision's text 2 added 2 characters in body

See http://stackoverflow.com/questions/271398#358259

With the linked-to extension you can write this:

var str = "{foo} {bar} {baz}".Format(foo=>foo, >"foo", bar=>2, baz=>new object());

and you'll get "foo 2 System.Object".

show/hide this revision's text 1

See http://stackoverflow.com/questions/271398#358259

With the linked-to extension you can write this:

var str = "{foo} {bar} {baz}".Format(foo=>foo, bar=>2, baz=>new object());

and you'll get "foo 2 System.Object".