I have been developing apps using .net for quite sometime now. But, I am still not sure how does the CLR know that a .net app has started. Is there like one instance of CLR per app? I don't think this can be the case as there is just one GC which manages all the memory for all .net apps. Does the CLR kind of run in background? I am quite confused.
feedback
|
|
Hmm, let me take a shot at this too.
(I learnt a lot writing this - there is a ton of information behind the links, I certainly didn't get through all of it!) | |||
feedback
|
|
Windows executables are Portable Executables, a format which gives Windows the information it needs to load and run the program. When Windows encounters a .NET program it loads an instance of the CLR and hands execution of the program to the new CLR instance. Each running .NET program is hosted within it's own instance of the CLR. The CLR process loads the IL program and compiles it to Native Code (JIT) then executes the code, taking care of memory management and garbage collection for that program. | |||
feedback
|
|
From MSDN: Common Language Runtime
A Process loads the .Net Framework (of which only one version of the Framework may exist within a process). The referenced link seems to go into great detail on how things work. In addition, regarding GC:
Admission of Update ...and another correction on my part ;) | |||||||||||
feedback
|