14 13 Feb 2016 17:42 by u/6double5321
The formatted string literals look neat. I could see me using that feature quite a bit.
C# released a similar feature recently instead of doing string.Format("foo{0}bar",object); we can do $"foo{object}bar"; It is very convenient.
string.Format("foo{0}bar",object);
$"foo{object}bar";
Who gives a shit? I'm still using 2.7 /s
3 comments
4 u/ThisIsMyRealName 13 Feb 2016 18:42
The formatted string literals look neat. I could see me using that feature quite a bit.
2 u/BlueSpeed 13 Feb 2016 21:20
C# released a similar feature recently instead of doing
string.Format("foo{0}bar",object);we can do$"foo{object}bar";It is very convenient.2 u/nody 14 Feb 2016 02:49
Who gives a shit? I'm still using 2.7 /s