Let\'s say that you want to output or concat strings. Which of the following styles do you prefer?
var p = new { FirstName = \"Bill\", LastName = \"Ga
The first one (format) looks better to me. It's more readable and you are not creating extra temporary string objects.