Beef icon indicating copy to clipboard operation
Beef copied to clipboard

Format document changes interpolated string

Open mailgerigk opened this issue 6 months ago • 0 comments

Current

Given the following code:

var code = scope $"";
code.AppendF($"{5}.{4}");

var code2 = scope $""..AppendF($"{4}.{2}");

Formatting the document will result in:

var code = scope $"";
code.AppendF($"{5}. {4}");

var code2 = scope $""..AppendF($"{4}. {2}");

Expected

Formatting the document should not change the resulting interpolated string.

mailgerigk avatar Jun 23 '25 22:06 mailgerigk