How CLR executes a DLL file.
1. CLR will be loaded into memory
2. CLR loads a Manifest
3. CLR loads Type Info.
4. CLR generates CTS of CLS (System.Int16, System.Int32, 64)
5. CTS information will be loaded into MSIL
6. CLR generates output.
Always CLR tracks for the changes in the program. If program is modified step 1- 6 will be executed, otherwise only step 6th will be executed. Due to this behavior CLR is called as Just In Time Compiler.
No comments:
Post a Comment