Thread: What is CLR?
View Single Post
  #8 (permalink)  
Old 11-04-2010, 10:25 AM
jurwanwall jurwanwall is offline
Member
 
Join Date: Nov 2010
Posts: 85
jurwanwall is on a distinguished road
CLR is an abbreviation for Common Language Runtime and is the most vital component of the .NET framework. All languages have runtime and it is the responsibility of a runtime to take care of the code execution.

For example, Java has its Java Virtual Machine and VB6 has MSVBVM60.Dll. Similarly .Net has CLR.

The CLR has the following responsibilities :


* Execute IL (Intermediate Language) code
* Garbage Collection
* Code Access Security
* Code verification, etc.
Reply With Quote