View IL while debugging

  • Thread starter Thread starter Maxim
  • Start date Start date
M

Maxim

Hi all,

Is it possible to see IL code while debugging the application? I can see asm
code in disassembler view, but I'd like to see the IL code too.

Thanks
 
"Maxim" said:
Hi all,

Is it possible to see IL code while debugging the application? I can see asm
code in disassembler view, but I'd like to see the IL code too.

I think that's only possible if the original source was IL. I guess you
could use ILDASM to get the IL source, then ILASM in debug mode. Load
that EXE into the debugger and you may be able to see the IL.
 
Back
Top