vote up 2 vote down star
3

If you had to choose one tool, other than Visual Studio, that helps you write better code, which would it be?

ReSharper, nDepend, nUnit, other?

flag
1  
I think this belongs in the community wiki. Jimmy, you can open the question for editing and click on Community Wiki. – DOK May 25 at 18:29
Ok, changed it to Community Wiki – Jimmy May 26 at 7:25

18 Answers

vote up 12 vote down check

One tool = ReSharper!

link|flag
2  
Faster writing code but not having any unit tests? Hm. I would choose unit tests first. – Stefan Steinegger May 25 at 18:24
1  
I've learned tons just from using Resharper. It is also the only tool besides VS that I would not want to code without. – Hermann May 25 at 18:24
An I would never dare to write any code without tests anymore. – Stefan Steinegger May 25 at 18:44
1  
Yes, of course - I use lots of other tools, too (including nunit). But most valuable is in my opinion ReSharper. It is not only about writing faster code, but all the cleanup and codestyle features, too. NUnit can be replaced by other tools - but ReSharper has a unique featureset. – tanascius May 25 at 19:25
Really hard to name one tool, but that was also the intent with the question. You can also extend ReSharper with even more code analysis by installing codeplex.com/StyleCopForReSharper. – Jimmy May 27 at 15:55
vote up 0 vote down

http://www.amazon.co.uk/Professional-C-2008-Wrox-Guides/dp/0470191376/ref=sr_1_3?ie=UTF8&s=books&qid=1243274920&sr=8-3

;)

I would recommend ReSharper, but I find it slows VS down

link|flag
vote up 1 vote down

ReSharper helps me write neat code, but I would hate to have to live without ViEmu.

link|flag
+1 for ViEmu. Very cool tool – eu-ge-ne May 25 at 20:09
vote up 0 vote down

My conscience!

link|flag
vote up 0 vote down

Consider http://www.icsharpcode.net/OpenSource/SD/ as well...

link|flag
vote up 0 vote down

A good RSS-reader. I think that no tool (in the traditional sense) has helped me improve my code quality nearly as much as Google Reader paired up with a some good RSS feeds.

link|flag
vote up 0 vote down

FxCop. Hands down forces me to fix the things that really matter to the people who will use my code.

link|flag
vote up 4 vote down

For a better, nicer, and more standard code, the answer will be FxCop.

link|flag
1  
Or use Gendarme (open source FxCop alternative) – Nathan Koop May 25 at 18:13
Love it! Microsoft Visual Studio 2005 and Visual Studio 2008 Team System Development Editions both include a "Code Analysis" feature based on FxCop. – DOK Aug 2 at 17:31
vote up 2 vote down

If you consider a book a tool, here you go. I've been reading a really good book from the guys that built the .NET framework. Not done, but it's a good read.

Framework Design Guidelines: Conventions, Idioms, and Patterns for Reusable .NET Libraries, http://www.chapters.indigo.ca/books/Framework-Design-Guidelines-Conventions-Idioms-Krzysztof-Cwalina-Brad-Abrams/9780321545619-item.html?ref=Search+Books%3a+%2527Brad+Abrams%2527

link|flag
+1, A great recommendation! – Moayad Mardini May 25 at 18:15
vote up 0 vote down

A good non software tool would be code review.

link|flag
vote up 1 vote down

I'm going to say "a run-time profiler": because there are alternatives to the other suggestions (you can write unit tests without nUnit, refactor without ReSharper, follow coding convetions without FxCop), but when you need to improve the performance of some code there's nothing like having a 3rd-party run-time profiler.

link|flag
vote up 1 vote down

I'm glad that I don't have to choose from only one tool.

But if I had, I would say that unit tests are most important. What is not covered by other tools, could be proven by unit tests.

What does resharper or FxCop help if you don't have any unit tests?

link|flag
vote up 4 vote down

You can find 13 answers to a similar question here: An ASP.NET Developers Toolset

and 114 answers here to the question "Essential Programming Tools", many of which are useful for .Net developers

link|flag
Thanks, I saw those but wasn't really after a long list of tools. I thought it would be interesting to see what everybody answered when they only could choose one tool. It's not just the tool that is important but also what practise that produces better code. Refactoring, unit testing and so on. – Jimmy May 26 at 7:29
vote up 0 vote down

The best tool at your disposal is your brain.

Read other people's code & ideas (e.g. CodeProject, Stack Overflow). You'll learn far more from other people's mistakes and their flashes of brilliance than anything else. If you focus on your own code, you will continue to make (and not see) the same mistakes, and will improve much more slowly.

Then read your own code. If you can look at your code after 2 weeks and think that it's good, then you're not learning.

(If you need a software tool as an answer to this question, then: "the internet". Expose yourself to other people's ideas, as even the bad ones will teach you something)

link|flag
vote up 0 vote down

xUnit (with Moq) is definitely my favorite tool

link|flag
vote up 0 vote down

A brain...

link|flag
vote up 2 vote down

I use think that it was resharper, but my new can't live without tool is PEX. Really forces you to make sure that your methods are solid - if you haven't tried it, you'll be surprised at the number of potential "gotchas" it can help you find.

link|flag
vote up 1 vote down

I've tried Resharper trials twice and it's good, but I've gotten used to DevExpress' Refactor Pro! and CodeRush... great tools. And the DxCore allows you to write plugins for VS.NET a lot more easily for tasks that could also speed up development and or write better code.

link|flag

Your Answer

Get an OpenID
or

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