Terminology

  • Thread starter Thread starter Simon Johnson
  • Start date Start date
S

Simon Johnson

Not really C# but a more general question..what is the difference between a
managed and unmanaged class/application?

Thanks,
Simon.
 
Managed code runs inside the .NET Framework runtime (CLR), unmananged code
runs outside the runtime. So unmanaged code can talk directly to the
Operating System, memory, ... while managed code talks to the runtime, and
the runtime talks to the OS, memory, ...

In general managed code are .NET assemblies (exe, dll, ...), unmaged code
are ActiveX components writtin in VB6 for example, C dll's, ...

--
Greetz

Jan Tielens
________________________________
Read my weblog: http://weblogs.asp.net/jan
 

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