Resharper multiline method invocation parenthesis alignment

自古美人都是妖i 提交于 2019-12-03 06:40:32

问题


Resharper is formatting multiline method calls like this:

foo.Bar(
    x,
    y
    );

I would prefer it to align the closing parenthesis with the first line e.g.:

foo.Bar(
    x,
    y
);

I've looked through the Resharper code layout options, but cannot see the right setting. Can someone tell me how to achieve this alternative formatting?


回答1:


In Visual Studio, go to Resharper > Options > Languages > C# > Formatting Style > Other > Indentation > Continuous line indent multiplier and set it to 0.




回答2:


Can I recommend you take a look at StyleCop, and then StyleCop for ReSharper?

StyleCop allows you to create exceptions or warnings for various types of formatting. The latter project, StyleCop for ReSharper allows ReSharper to automatically implement certain formats. There is quite a steep learning curve initially with SfR, but it is well worthwhile. This is a very under-used tool, and I wish Microsoft would advertise StyleCop more.

Both are Codeplex projects, and can be found at their respective URL's:

  • http://stylecop.codeplex.com/

  • http://stylecopforresharper.codeplex.com/

I hope this helps you out somewhat.




回答3:


In 2016.2 version appeared an option Intent method calls' parenthesis.

It does exactly what you expect:



来源:https://stackoverflow.com/questions/7352708/resharper-multiline-method-invocation-parenthesis-alignment

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!