CLR

  • Thread starter Thread starter Noor
  • Start date Start date
N

Noor

dear all,

can anybody tell me which file contains the clr .. how it's invoked?

like in java.. jvm is separate executable call java.exe (i think)..

what's the clr file name?

plz point me out some articles regarding this.

Noor
 
can anybody tell me which file contains the clr ..

It's made up of several DLLs. Primarily the Mscor*.dll files in
%windir%\system32 and %windir%\Microsoft.Net\Framework\v1.x.yyyy.

how it's invoked?

When you run a managed EXE on the CLR, it has a native entry point
that simply jumps to mscoree.dll!_CorExeMain, where the CLR is loaded.

Other CLI implementations may have a separate loader program similar
to jave.exe (Rotor for example has clix.exe).



Mattias
 

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