What Visual Studio plugins do you consider necessary for the new (ish) / returning C # developer?

I was a developer for about 20 years, and did some C # about 5 years ago.

What Visual Studio plugins would you say that I cannot / should not live without? They can help:

Create .NET Framework languages ​​Create stub code to speed things up

Thanks!

+7
c # visual-studio
source share
7 answers

JetBrains ReSharper , which really improves the IDE and helps with best practices, refactoring, etc. (it looks like DevExpress CodeRush - another alternative)

RedGate.Net Reflector to help understand how everything works behind the scenes.

GhostDoc is nice if you use XML comments to document your code.

TestDriven.NET works great if you are actually doing Test Driven Development (or any Unit Unit testing).

And although I have not used it personally (but I plan to try it now that I have found it), MetalScroll looks like a very useful tool when working with large code files. It replaces the scroll bar with a preview of the scroll document.

+23
source share

to make a visual studio comparable to other IDEs, you really need DevExpress CodeRush or (my personal favorite) JetBrains ReSharper

+7
source share

Power Commands contains many very useful features that simplify the use of Visual Studio.

GhostDoc is also great for creating comments in your code.

They are both free.

+3
source share

The obvious repeater and reflector that others talked about. I have a few dozen, but for specific tasks. Some of the most common ones I use:

Pro power tools

Powercommands

Vscommands

Tangible t4 editor

IronPython and IronRuby Console (requires PowerConsole)

+3
source share

If you are using VS 2010 Premium or higher, check out the Code Contracts Static Analyzer. If you use Code Contracts statements in your code, it will statically analyze your statements and try to prove whether they are true.

Pex is also extremely interesting (for unit testing), although I have not played with it enough yet to find out how useful this will be. I tried to run it in the Parse procedure for one of my custom value types, and his research found a number of angular cases that I did not consider.

+2
source share

The reactive brains of Reshar and Anch SVN

0
source share

Another suggestion: in 2010, look at this great article from Scott Hanselman : Best Visual Studio 2010 Tools, Power Commands and Extensions

0
source share

All Articles