Skip to content

Instantly share code, notes, and snippets.

@jfromaniello
Created May 30, 2011 12:26
Show Gist options
  • Save jfromaniello/998833 to your computer and use it in GitHub Desktop.
Save jfromaniello/998833 to your computer and use it in GitHub Desktop.
var firstName = "José";
var lastName = "Romaniello";
var salutation = "Hello {firstName} {lastName}"
//like ruby syntax but less powerfull :P
var firstName = "José";
var lastName = "Romaniello";
var salutation = string.Format("hello {0} {1}", firstName, lastName);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment