What is CLR and how it generates native code ?
Answer / narayansahu
CLR stands for Common Language Runtime. It's the runtime
environment of .Net Framework. It has one component called
JIT or JITTER (Just in time translator) which is
responsible for translating code from MSIL To Native code
on the fly.
The scene is like this on source machine
Any .net------> CLR-> MSIL Code
compliant code
On Detination MAchine
MSIL Code --> CLR(JIT)----> NAtive code--> os
| Is This Answer Correct ? | 33 Yes | 2 No |
How do I define my own code group
Are there any parts of the .net framework 3.0 that only work on windows vista?
About Assembly in .NET, types of assemblies, their difference, How to register into GAC. How to generate the strong names & its use ?
6 Answers Infosys, Microsoft, MMTS,
What you mean by routing in mvc?
What are child actions in ASP.Net MVC?
What data type should you use if you want an 8-bit value that's signed ?
will this code works fine? or will it gives error? Object obj=5; int i=6; i=i+obj;
What is MSIL, IL, CTS?
How do I use partial view?
Does Tempdata hold the data for other request in ASP.Net MVC?
What is entity framework used for?
Can we look at the IL for an assembly?