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
 
Back
Top