How to adjust the left margin by parameters in ReSharper / VS2010?

It's stupid, but when I have something like this

SomethingStupid.Whatever(string a, string b, string c);

And then I break them like this:

SomethingStupid.Whatever(string a,
     string b,
     string c);

My code cleanup moves them to this position when I would like to see them here:

SomethingStupid.Whatever(string a,
                         string b,
                         string c);

In my life I can’t understand where this installation exists, any ideas?

+5
source share
1 answer

You need to change the setting to ReSharper -> Options -> C# -> Formatting Style -> Other -> Align Multiline Constructs -> Method Parameters. Enabling the option will line up the parameters of the multi-line method with each other at its discretion.

+6
source

All Articles