Hi,
I want to know that what is the internal processing of the CLR and how it take place ?
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
SenthilkumarPosted Mar 12, 2012, 11:30 PM
The run time environment manages the execution and its multiple language environment. It supports some of the .net supported language to execute in the .net.
It converts the .net language into managed code and it runs under the CLR.
- Auto memory management
- Code security
- Run time type safety
- Thread management
- Program execution
- Exception handling
The CLR converts the .net language into machine understandable code called MSIL (Microsoft Intermediate Language). It handles the object in the memory management to free the unused resource in the memory to helps the processor to improve the performance of the execution.
The CLR has the JIT(Just In Time) compiler which executes the .net code at the runtime.
If it is useful then mark it as "Accepted Answer".