vote up 3 vote down star
2

Here are some that I use (all freely available):

Hex Editor: Hexplorer http://sourceforge.net/projects/hexplorer/
Debugger: WinDbg http://www.microsoft.com/whdc/resources/downloads.mspx
Documentation Compiler: SandCastle http://www.sandcastledocs.com/Wiki%20Pages/Home.aspx
Automatic Build: Cruise Control.Net http://ccnet.thoughtworks.com/

Rob

flag

67% accept rate
My god..Hexplorer is truly horrifying in how bad it is! If anyone else reads this, don't waste your time downloading it. Can't drag-select upwards, so if you want to hack off the top of a file you just can't do it. Slow as hell, interface is nonstandard and screwy.. Lots of other problems. Stay away. – Scott Bilas May 13 at 2:56

8 Answers

vote up 4 vote down

Visual Assist X

link|flag
vote up 0 vote down
  • Resharper 4.0 to replace the built-in refactoring (commercial)
  • GhostDoc for auto-code documentation (free)
link|flag
vote up 3 vote down

Reflector

Reflector is the class browser, explorer, analyzer and documentation viewer for .NET. Reflector allows to easily view, navigate, search, decompile and analyze .NET assemblies in C#, Visual Basic and IL.

link|flag
vote up 0 vote down

I suppose that the Slightly Gibb answer would be Visual Studio 2008, however:

Configuration management (essential):

  • PVCS (Serena ChangeMan)
  • Beyond Compare

Editors:

  • Notepad++
  • HexWorkshop
  • TextPad

Screen Captures (for windows apps)

  • FastStone Image Viewer
link|flag
vote up 1 vote down

WinDBG

Symbols server

Source server

Minidumps

MSN

link|flag
vote up 1 vote down

We use Microsoft Application Verifier tool in conjunction with WinDbg routinely when developing new C++ code. The sooner you detect a fault in your code the cheaper it is to fix. Get it here:

Application Verifier Download

The LeakDiag tool and associated ldgrapher are useful tools to detect memory leaks in native applications. You can get them here:

ftp:Leak Diag

ftp:LDGrapher

There are some excellent blogs out there talking about using tools like WinDBG Debugging Toolbox is one of my favourites.

link|flag
vote up 0 vote down

PEBrowsePro and PEBrowseDbg.

Both at: http://www.smidgeonsoft.com/

link|flag
vote up 0 vote down

Notepad2

Debug View

Process Explorer

link|flag

Your Answer

Get an OpenID
or

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