I'm wondering if there are any Visual Studio quality debuggers that can run outside of Visual Studio, instead of inside of the IDE? It would be great if it were Open Source so I could check out how it was done, but that's not a requirement, neither is that be product free.
9
votes
6 Answers
6
votes
WinDBG with SOS extension
Following has series of 6 videos, to get started on WinDBG http://channel9.msdn.com/Series/-NET-Debugging-Stater-Kit-for-the-Production-Environment
WinDBG is also useful for following scenarios, where VS debugger is not effective/available
- Hangs
- Crashes
- Deadlocks
- Production environment
4
votes
You should try mdbg.exe.
Also available in the Windows SDK directory on your machine, like C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Bin\NETFX 4.0 Tools for VS2010.
3
votes
1
votes
1
votes