managed vs unmanaged c++ application

  • Thread starter Thread starter Tejas Nandarshi via .NET 247
  • Start date Start date
Tejas Nandarshi via .NET 247 said:
please tell me the difference between managed and
unmanaged code in vc++.net application.

Unmanaged code is the underpinning of traditional Windows applications which
contain x86 machine code wrapped up in Win32's PE (portable executable)
format.

Managed code is the stuff of applications that run under the .Net platform's
CLR (common language runtime). Those applications contain MS Intermediate
Language (MSIL) which is compiled on the fly (or less often at
installation).

Regards,
Will
 
Back
Top