当我使用多行参数声明或调用C#方法时:
public void DoSomething(
p1,
p2,
p3);
然后我希望ReSharper将代码格式化为:
public void DoSomething(
p1,
p2,
p3
);
是否有启用此行为的设置?
答案 0 :(得分:3)
此功能仅在ReSharper 2018.1
开头提供。
这些设置位于:
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