When I declare or call a C# method with multi-line parameters like this:
public void DoSomething(
p1,
p2,
p3);
Then I would like ReSharper to format that code to like this:
public void DoSomething(
p1,
p2,
p3
);
Is there a setting that enables this behavior?
This feature is only available beginning with ReSharper 2018.1
.
Those settings are located here:
Code Editing -> C# -> Formatting Style -> Line Breaks and Wrapping
-> Arrangement of Method Signatures -> Prefer wrap before ")" in declaration
-> Arrangement of Invocations -> Prefer wrap before ")" in invocation