vote up 4 vote down star

Hello. Just for fun, how close can we get to debug an application in C# using only the command-line out-of-the-box? No other software, just the command-line. That is, for instance, is there a way to peek at the values of variables, interact with output, etc. like the VS debugger does?

EDIT: And just for completeness' sake, here is the mono equivalent: http://mono-project.com/Guide%3ADebugger, although it doesn't seem to be very stable.

Thanks.

flag

Interesting question. – Geo Nov 1 at 10:53
You means, something like gdb for managed code? – Martinho Fernandes Nov 1 at 11:01
@Martinho. Yes, something like that. Look at driis' answer, and a screenshot here: insidepro.com/kk/258/258_11.jpg, that's quite awesome. – Dervin Thunk Nov 1 at 11:03

2 Answers

vote up 6 vote down check

You can use the CLR debugger, which is part of the framework installation; and does not depend on VS.

An alternative (and more appropiate for your question) is MDbg, which is a command line debugger for managed code.

link|flag
Very interesting! Probably MDbg is what I'm looking for... I'll give it a shot. – Dervin Thunk Nov 1 at 11:01
Can MDbg display "real" source code, not just IL? – Martinho Fernandes Nov 1 at 11:09
vote up 1 vote down

There are command line debuggers that come with Debugging Tools for Windows like CDB . For managed applications you will also need the SOS module.

link|flag
Thanks, Darin. I'm only after what can be done with the tools that come with VS, no additional downloads. – Dervin Thunk Nov 1 at 10:57

Your Answer

Get an OpenID
or

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