More on CLR ?
Answers were Sorted based on User's Feedback
Answer / mahua dutta
CLR is the heart of the .Net framework.our application does
not communicate os directly but go through CLR.It handles
the execution of all .net applications.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / guest
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.
| Is This Answer Correct ? | 2 Yes | 1 No |
What does CLR do after the IL is generated and machine language is generated .Will it look for main method ?
Do I need microsoft .net framework?
Why to use '{resource}.axd/{*pathInfo}' in routing in ASP.Net MVC?
Can you Write the GC(Garbage Collector) Algoritham in .NET? (But not Explination of Working of GC).
How do you box a primitive data type variable ?
What are action filters?
what is the three pillar of .Net ?
What are scaffold templates in mvc?
How you can implement custom validation in asp.net MVC?
If Controller is not there in MVC Pattern what happens?
What is the domain object?
What is difference between razor and web form engine?