vote up 3 vote down star
1

Every day I realize how much I love Visual Studio for .NET development.... but, I believe that Resharper, may hold a value that surpasses Visual Studio's (I am using VS 2005 for WPF/WCF development).

I decided it would be great to compile a list of the most valuable tools for software development. These can be applications/plug-ins anything that you think holds GREAT value.

Also, please explain the benefits of the tool that you are posting.

Resharper:

  • Intergrated Unit testing
  • "Camel Hump" code auto completion
  • Find "usings" (inverse of "Go to Deceleration")
  • Code formating and member rearranging
  • Assembly and namespace inclusion (based on your code)
  • Check for common optimizations and possible bugs in code and suggests/rewrites the code for you (things like null checking, redundant delegate creation, inverting if statements, etc...);
  • Tells you when code and be more generic (may suggest things like "use this interface instead" if your code never refers to something specific on an object)
  • Helps you see code that is not being used and will clean any unused members.
  • File structure view helps you jump around the regions of your file (this is really awesome and clean).
  • Class searching (you can use things like camel humps) Asks you which partial file to open once you find a class.
  • It also has it's own plugin support, so you can do things like FxCop, documentation and relfector (all free).
  • This thing has so much I don't think I hit 10% of it yet :) [When I get time, I will try to add more... feel free to help me out]
flag

34 Answers

prev 1 2
vote up 7 vote down

ReSharper is my #1 choice as well. This tool has so many time savers that I just can't code without it.

I would say #2 would be Reflector. This has given me a greater understanding of third party type systems including those in the .Net Framework.

link|flag
vote up 7 vote down

Subversion. Even if you're a solo programmer, version control is a vital tool. And WinZip is not a version control system. :-)

http://subversion.tigris.org

link|flag
vote up 2 vote down

The CodeRush/Refactor Pro addins are, I think much more robust than the Resharper et all offerings.

Visualization Tools - Quickly see the essence of the code you're working on because Clarity is good - Noise is bad.

Advanced Selection Tools - Select and radically manipulate code with efficiency, because working with selections the old-fashioned way is an exercise in tedium.

Clipboard Tools - The clipboard as your trusty sidekick because a smart clipboard is a whole lot better than a simple one.

Navigation Tools - Move through source code faster because fishing for code is a distraction that you don't have time for.

Code Templates - Create common code blocks fast because manually typing in all those characters of a try/catch block or a for-loop takes way too long. Cutting down on the repetition in your day can help reduce the risks of long term damage.

CodeRush Extensibility - The extensibility of CodeRush is it's single greatest feature because through custom extensions you can help newbies adhere to team standards, implement that great VS feature idea you had, or simply exploit all the killer plug-ins submitted by the CodeRush community.

alt text

link|flag
show 1 more comment
vote up 1 vote down

TestDriven.NET

This lets you easily run (and debug) single NUnit tests from the IDE.

link|flag
prev 1 2

Your Answer

Get an OpenID
or

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