Code Execution

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi! All

Managed codes run under CLR?? Where does Unmanaged Code run??
Thanks in advance,
Baren
 
Under the OS.

--
HTH,

Kevin Spencer
Microsoft MVP
Professional Numbskull

Hard work is a medication for which
there is no placebo.
 
Managed code is translated at runtime by the CLR into native code (direct
CPU instructions). Unmanaged code is already native code and is therefor not
translated.
 
Back
Top