Skip to content

Instantly share code, notes, and snippets.

@ChrisMissal
Created May 31, 2012 14:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ChrisMissal/2843776 to your computer and use it in GitHub Desktop.
Save ChrisMissal/2843776 to your computer and use it in GitHub Desktop.
String interpolations in C#
var userName = "ChrisMissal";
var someString = "Hello, my name is $(userName), nice to meet you!";
var a = "Now is $(DateTime.Now).";
var b = "Tomorrow will be $(DateTime.Now.AddDays(1))";
var c = "This list has $(list.Count()) items.";
@mxmissile
Copy link

They should use the Razor syntax for this...

var a = "Now is @{DateTime.Now}.";

@ChrisMissal
Copy link
Author

Yeah, I can get on board with that. I'm fine with whatever syntax, I just feel that something needs to be implemented. I believe the syntax I posted is how Boo does it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment