While trying to answer this question I decided I need to step through the marshalling process by hand, in the debugger view.

Unfortunately, Visual Studio seems to jump right over all this interesting code. Here's the P/Invoke call to GetProfilesDirectory (a WinAPI function):

enter image description here

but after stepping into this call (F11), I don't find myself at FFF9BFD8; rather, I land right in the GetProfilesDirectory code:

enter image description here

There's also the [Managed to Native Transition] entry on the stack, hinting at the fact that Visual Studio had just jumped over a whole bunch of code.

How can I step through this transition?

link|improve this question

2  
Well gosh, I found the problem already: you're using a variable-width font in a code editor! That's just madness. – Cody Gray Feb 21 at 19:26
@CodyGray Hard to tell if that's a joke, so I assume you're just being narrow-minded :) Fortunately the guys behind VS are a little more open, and have actually made column selections work with such fonts! Now if only someone finally implemented elastic tabstops in a usable editor, boy would that be a reason to celebrate. – romkyns Feb 21 at 21:01
feedback

1 Answer

up vote 1 down vote accepted

In Visual Studio, you cannot do that, i.e. there is no way to switch VS debugger into a mode to see what is going on during Managed to Native transition.

You could try WinDbg + SOS/SOSEX instead as WinDBG does not hide these kinds of details from you. However, that part is either .NET or Windows internal abstraction, so even if you could see it, you might not get much, as to see what's actually going on there (besides the assembly), you will need private symbols for mscorlib, mscoreei, or clr dlls (pdb files).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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