I want that in C# 4.0

I’ve been playing with Boo recently and I find it to be very powerful language. One little thing I like particularly is, that I can do this:
name = "Krzysztof"
print "Hello, ${name}, on the beautiful day of ${date.Today}"
And get this:
boo
Can I please have this in C# 4.0?
Technorati Tags: , ,

Comments

Yeah, I really enjoy this feature in Boo. It’s really useful in Brail views.

Check out james.newtonking.com/…/…h-named-variables.aspx
might be good enough for now.

Cheers.

Doug says:

Been meaning to play with Boo.
PowerShell does the following

$name = "Krzysztof"
"Hello, $name, on the beautiful day of $(Get-Date)"