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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top