关于c#6.0:有没有办法将C#6的字符串插值与多行字符串一起使用?

Is there a way to use C# 6's String Interpolation with multi-line string?

有没有办法用C 6的字符串插值多行字符串?

类似的东西

1
2
3
4
   string a ="1111";
   string s = @$"
         {a}    
   ";

以上内容不起作用。


尝试交换$@的位置。