9
votes

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.

6
I'm wonder too whether here are any, but not the VS quality, it have an awful debugger, and that's the reason actually, that I am seeking for another. - Hi-Angel

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

  1. Hangs
  2. Crashes
  3. Deadlocks
  4. 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

It's not quite "standalone", but SharpDevelop might have what you're looking for:

1
votes

You're not just looking for DbgCLR?

1
votes

You can also use GDB or the Mono hard-debugger with C#/.Net code.

0
votes

windbg

Its a bit of a pain for debugging managed code, but it can be done.