I've been customizing my formatting desires using ReSharper for code clean-up. So far I've been able to make the clean-up rules match my coding style within:
ReSharper -> Options -> Languages -> C# -> Formatting Style
One thing I haven't figured out how to do yet is how to have params/fields/list items wrap with leading commas instead of trailing commas.
Example of what I want:
var list = new List<string> {
"apple"
, "banana"
, "orange"
};
Example of what I get currently:
var list = new List<string> {
"apple",
"banana",
"orange"
};