This is silly, but when I have something like this
SomethingStupid.Whatever(string a, string b, string c);
And then I break them off like this:
SomethingStupid.Whatever(string a,
string b,
string c);
My code cleanup moves them to that position, when I'd like to see them here:
SomethingStupid.Whatever(string a,
string b,
string c);
For the life of me I can't figure out where this setting exists, any ideas?