Closed loraderon closed 10 months ago
I have verified that this now works correctly in 0.27.1 🎉
Output in the playground:
public class ClassName
{
public void Test()
{
var foo = new { Bars = new string[0] };
foo
.Bars.Select(s =>
s.ToString().ToString().ToString().ToString().ToString().ToString().ToString()
)
.ToArray();
foo.Select(s =>
s.ToString().ToString().ToString().ToString().ToString().ToString().ToString()
)
.ToArray();
}
}
Using the latest 0.26.7 in the playground that reverted #1010, there are some inconsistencies in the intentation of the method call and primarily the end parenthesis
)
.Input:
Output:
Expected behavior:
Either
Or