Tagged Questions
The mdbg tag has no wiki summary.
4
votes
2answers
472 views
Web Based Stack Dump Tool for ASP.NET Using Mdbg?
There is a great presentation by Dan Farino, Chief Systems Architect at MySpace.com, showcasing a web-based stack dump tool that catalogues all threads running in a given process (what they're doing, ...
2
votes
2answers
410 views
Does the mdbg managed debugger sample exist for .NET 4.0?
Is there a .NET 4.0 version of the mdbg managed debugger source ?
I need to port my CPU analyzer, and ICorDebug has changed a bit in .NET 4.0.
2
votes
1answer
241 views
How do I programmatically enumerate types in a running .NET process using MDbg?
I want to print out a list of all the different Types loaded in a running .NET process. My plan is to eventually build a GUI app based on this, so I want to do this from my code as opposed to a third ...
1
vote
1answer
213 views
Attaching to w3wp using mdbg
I am trying to attach to the w3wp process using the command line managed debugger (mdbg). I am not able to see the process in the list of processes with the "a" command.
I am sure that the problem ...
1
vote
1answer
302 views
mdbg can't debug my hello world program
In order to try out mdbg, I have the following simple hello world program:
// kkk.cs
using System;
class HelloMain
{
static public void Main()
{
Console.WriteLine("Hello");
}
}
...
1
vote
2answers
442 views
Cannot Detach from process using mdbg
Following on from this question I now have code that can attach to a process using the Mdbg API.
The problem is that I can't detach from the process if I need to. When I call
...
0
votes
1answer
64 views
Good Resources on CorDbg & Mdbg
I am looking for some good resources of information about the CorDbg & Mdbg debuggers in .NET as well as some stuff about MSIL(CIL).
0
votes
3answers
196 views
Where can I get Mdbg?
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 ) ?