| Author: Vijaykumar Patil 05 May 2008 | Member Level: Gold Points : 2 |
The .NET Framework provides a runtime environment called the Common Language Runtime or CLR (similar to the Java Virtual Machine or JVM in Java), which handles the execution of code and provides useful services for the implementation of the program. CLR takes care of code management at program execution and provides various beneficial services such as memory management, thread management, security management, code verification, compilation, and other system services. The managed code that targets CLR benefits from useful features such as cross-language integration, cross-language exception handling, versioning, enhanced security, deployment support, and debugging.
|
| Author: venkat kamal 05 May 2008 | Member Level: Gold Points : 2 |
CLR--common Language Runtime, It is the heart of the dotnet framework,as java has JVM like that .net has CLR, in which it has the following responsibilites 1.Garbage collection 2.code access security 3.code verification
|