What is CLR (Common Language Runtime)?

 Posted by Raja on 4/12/2008 | Category: .NET Framework Interview questions | Views: 12066
Answer:

This is an execution engine for .NET Framework application. It provides a number of services including
1. Code Management
2. Application memory isolation
3. Verification of type safety
4. Conversion of IL to native code.
5. Access to meta data
6. Managing memory for managed objects
7. Enforcement of code access security
8. Exception handling, including cross-language exceptions.
9. Inter operation between managed code, COM objects and pre-existing DLLs (Unmanaged code and data)
10. Automation of object layout
11. Support for developer services (profiling, debugging etc.)


Asked In: Many interviews | Alert Moderator 

Comments or Responses

Posted by: Jish on: 3/5/2012 | Points: 10
what is IL?
Posted by: Jprathap on: 6/4/2013 | Points: 10
Intermediate language(IL) is the compiled form of dot net language,which support the platform independent.

Login to post response