[DevExpress Support Team: CLONED FROM T538933: Code Formatter - How do I get what I'm looking for with a compound statement?]
With wrapping turned off, what I want:
C#Func<int> func = new Func<int>(() =>
{
int a = 4 + 5;
return a;
});
What I get:
C#Func<int> func = new Func<int>(() => {
int a = 4 + 5;
return a;
});
I've very explicitly set that braces are always on a new line in every place I can possibly set it, so I should never be able to see it happen.
Thanks for this report.
You will receive an automatic notification when this issue is solved.