Walking with callstack.NET using embedded C ++

Is there a way to skip a .NET call using native C ++?
I read dbgHelp only for processing my own frames.
In addition, I tried to find information on how the created .NET column was built, but did not find anything.
Does anyone know a link to this?

+5
source share
1 answer

DbgHelp only handles native frames, but the managed debugging API is its own API (naturally, since you cannot use managed code for debug when the managed runtime is stopped at a breakpoint).

And here is a sample.

Of particular interest is the ICorDebugStackWalk interface .
+1
source

All Articles