How to view JIT-ed native code?

  • Thread starter Thread starter Morgan Cheng
  • Start date Start date
M

Morgan Cheng

We can view MSIL code with reflector or ILDASM, but how can we view
native code generated by JIT compiler at runtime?
 
| We can view MSIL code with reflector or ILDASM, but how can we view
| native code generated by JIT compiler at runtime?
|

Enable "native code" debugging in VS or run your program with a native
debugger (like windbg or cdb) attached.

Willy.
 
Back
Top