Are there any stand-alone C#/.NET Debuggers?
Asked Answered
P

6

9

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.

Peele answered 8/5, 2012 at 17:1 Comment(2)
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-closedWhirlybird
L
6

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
Liquescent answered 8/5, 2012 at 17:7 Comment(0)
H
4

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.

Heroic answered 8/5, 2012 at 17:13 Comment(0)
V
3

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

Valeriavalerian answered 8/5, 2012 at 17:3 Comment(0)
W
1

You're not just looking for DbgCLR?

Weatherspoon answered 8/5, 2012 at 17:5 Comment(0)
S
1

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

Softcover answered 8/5, 2012 at 17:6 Comment(0)
I
0

windbg

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

Indulgence answered 8/5, 2012 at 17:5 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.