Resharper multiline method invocation parenthesis

2020-05-20 02:31发布

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?

标签: c# resharper
3条回答
一夜七次
2楼-- · 2020-05-20 02:49

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

查看更多
smile是对你的礼貌
3楼-- · 2020-05-20 02:54

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:

I hope this helps you out somewhat.

查看更多
狗以群分
4楼-- · 2020-05-20 02:56

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

It does exactly what you expect:

screenshot

查看更多
登录 后发表回答