views:

73

answers:

2

I'd like to be able to debug .net code using Mdbg. Is there any way of getting it besides installing Visual Studio ( assuming this is a valid way of obtaining ) ?

+1  A: 

MSDN Download Link:

http://www.microsoft.com/downloads/details.aspx?FamilyID=ce2dc4df-b4af-461c-9900-8e8e28a940f3&displaylang=en

Neil N
Are we refering to the same thing? I'd like the command prompt tool. The mdbg you sent me to is some kind of form code.
Geo
+1  A: 

Mdbg - The .NET Framework Command-Line Debugger comes installed with the Windows SDK as well as Visual Studio.

There is also the CLR Managed Debugger Sample which is a sample program that demonstates how to build a command line debugger using .net. Note that this is source code and does not come with pre-built binaries so you will have have the .net SDK or visual studio installed to be able to build it first. It also has an addon GUI Extension.

Simon P Stevens
Installing Windows SDK did the trick. Thanks!
Geo
No problem Geo.
Simon P Stevens