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.
Are there any stand-alone C#/.NET Debuggers?
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. –
Gehman
See also https://mcmap.net/q/492829/-lightweight-net-debugger-closed –
Whirlybird
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
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.
It's not quite "standalone", but SharpDevelop might have what you're looking for:
You can also use GDB or the Mono hard-debugger with C#/.Net code.
windbg
Its a bit of a pain for debugging managed code, but it can be done.
© 2022 - 2024 — McMap. All rights reserved.