Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've been using Visual Studio as my main IDE for a while now (I still use Emacs for some personal projects, though).

I like the way Emacs formats C/C++ code and I'd like to convince Visual Studio use similar conventions for C# code. For instance, in Emacs, a C function call looks like:

functionName(argument1,
             argument2,
             argument3);

while in the C# code formatted by Visual Studio a function call looks like:

functionName(argument1,
    argument2,
    argument3);

which seems worse to me.

Is there a way to tweak Visual Studio code formatting rules? Any plugins that can handle that?

Many thanks,

share|improve this question

2 Answers

up vote 14 down vote accepted

Tools > Options > Text Editor > C# > Formatting

and

http://www.jetbrains.com/resharper/features/code_formatting.html#Code_Formatting

share|improve this answer
Thanks, but while that allows many customizations, I can't see a way to solve the problem in my example. It's just a minor nuissance, though. – Miron Brezuleanu Nov 14 '08 at 8:02
You could also drop the first argument to the next line which would make all arguments align. – Ed Guiness Nov 14 '08 at 8:03
1  
Thanks for the suggestion, that's what I do sometimes, but it 'wastes' a line. However I'm a bit annoyed because I consider the Emacs default formatting better (I bet I would feel the other way around if I had used Visual Studio before Emacs :-) ) – Miron Brezuleanu Nov 14 '08 at 8:48
1  
One man's 'waste' is another man's clear code. Sorry I don't have other ideas except maybe writing a VS macro for this particular bugbear. – Ed Guiness Nov 14 '08 at 10:07

Resharper (above) is good. CodeRush is now free from DevExpress. I've enjoyed using their products over the years.

http://www.devexpress.com/Products/Visual_Studio_Add-in/CodeRushX/

share|improve this answer
Thanks, I'll try CodeRush. – Miron Brezuleanu Nov 14 '08 at 12:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.