What is CLR and how it generates native code ?
Answer Posted / 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 |
Post New Answer View All Answers
Describe the roles of clr in .net framework.?
Is it possible to create a custom filter?
What are differences between entity framework and l2s? : Entity framework
What is the meaning of unobtrusive javascript? Explain us by any practical example.
What are non action methods in mvc?
Can I add mvc testcases in visual studio express?
What are the components required to create a route in ASP.Net MVC?
Explain the 'page lifecycle' of an ASP.NET MVC?
What is Separation of Concerns in ASP.NET ASP.Net MVC?
What is entity graph? : Entity framework
mention what is code first approach and model first approach in entity framework?
In which assembly is the mvc framework defined?
What is code first? : Entity framework
In Server how to check whether model has error or not in ASP.Net MVC
Describe the .net framework architecture.