Is there a way to use C# 6's String interpolation with multi-line strings ?
Something like
string a = "1111";
string s = @$"
{a}
";
The above does not work.
Is there a way to use C# 6's String interpolation with multi-line strings ?
Something like
string a = "1111";
string s = @$"
{a}
";
The above does not work.