You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When you format the current document with for example Ctrl + K, Ctrl + D it will not format objects within curly brackets inside of interpolated strings.
Console.WriteLine(scope $"Testing {1+2+3}");
should format as the following, but doesn't currently.
Console.WriteLine(scope $"Testing {1 + 2 + 3}");
The text was updated successfully, but these errors were encountered:
When you format the current document with for example Ctrl + K, Ctrl + D it will not format objects within curly brackets inside of interpolated strings.
Console.WriteLine(scope $"Testing {1+2+3}");
should format as the following, but doesn't currently.
Console.WriteLine(scope $"Testing {1 + 2 + 3}");
The text was updated successfully, but these errors were encountered: