vote up 10 vote down star
1

In my work I deal mostly with C# code nowadays, with a sprinkle of java from time to time. What I absolutely love about Eclipse (and I know people using it daily love it even more) is a sophisticated code formatter, able to mould code into any coding standard one might imagine. Is there such a tool for C#? Visual Studio code formatting (Crtl+K, Crtl+D) is subpar and StyleCop only checks the source without fixing it.

My dream tool would run from console (for easy inclusion in automated builds or pre-commit hooks and for execution on Linux + Mono), have text-file based configuration easy to store in a project repository and a graphical rule editor with preview - just like the Eclipse Code Formatter does.

flag

72% accept rate

11 Answers

vote up 8 vote down

Take a look at ReSharper. It's an awesome tool and a definite must-have. Version 4.0 has the code formatting and clean-up feature that you are looking for.

link|flag
works well... and it does more than format code! – jle Apr 22 at 13:58
vote up 4 vote down

For me, Ctrl+Shift+F maps to Find in Files. When I need to format code, I highlight it and hit Ctrl+K, Ctrl+F.

I understand this doesn't really address automated formatting, I just wanted to clarify for those who may not know this feature even exists in VS.

link|flag
vote up 4 vote down

Further to @Chris Karcher's answer - you can also automatically format the whole document by hitting Ctrl+K, Ctrl+D.

These formatting features work on a variety of file formats - it works wonders on ugly HTML.

link|flag
vote up 2 vote down

Not directly, but I use the Agent Smith plugin for R# to do this. Unfortunately, R# isn't free.

link|flag
vote up 2 vote down

I've heard only good things about ReSharper. It's on my to-learn list.

link|flag
vote up 1 vote down

Also take a look at Microsoft StyleCop

link|flag
vote up 0 vote down

I know that ReSharper is a great tool, I definitely plan to try it out. However, Visual Studio Pro + ReSharper cost about two thirds (2/3) of an average programmer's monthly salary here in Poland and won't work on Linux. I was hoping for a tool that would be affordable for open source projects.

link|flag
vote up 0 vote down

I haven't tried this (found it through Google). Might work? http://www.semdesigns.com/Products/Formatters/CSharpFormatter.html. It's fairly cheap at USD50, but no trial available.

link|flag
vote up 0 vote down

See this previous question:

Is there any tool for reformatting C# code?

Searching for [c#] astyle shows up some more previous questions too.

link|flag
vote up 0 vote down

http://www.sourceformat.com/

This tool is around (~30$), I tried it and it works nice (with multiple languages) I like this tool the best cuz it doesn't check code file for correctness. I can post code snippets from the net and it will traslate them correclty no matter if they are in missing parts of the code. Other tools I try complain in that cases. The tool can also be integrated easily into editors as it allows command line driving.

Other tools:

http://www.polystyle.com/index.jsp

http://astyle.sourceforge.net/ (open source)

link|flag
vote up 0 vote down

Another option: NArrange;

  • free
  • console based (so good for commit hooks etc, but can still be used as an "External Tool" in VS)
  • flexible config file
link|flag

Your Answer

Get an OpenID
or

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