[Proposal]: Allow new-lines in all interpolations
Opened this issue · 0 comments
CyrusNajmabadi commented
Allow new-lines in all interpolations
- Specification: https://github.com/dotnet/csharplang/blob/main/proposals/csharp-11.0/new-line-in-interpolation.md
- Discussion: #8648
Summary
Allow user to have multi-line interpolations in all places where interpolations are allowed. For example:
var v = $"Count is\t: { this.Is.A.Really()
.That.I.Should(
be + able)[
to.Wrap()] }.";