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 |
What are the 3 segments of the default route, that is present in an ASP.NET MVC application?
Why is XmlSerializer so slow
Is any files are generated,when we are adding the web reference to the web service?
Explain representational state transfer (rest) in detail?
What is filters in web api?
What is GUID , why we use it and where
What is the difference between adding routes, to a webforms application and to an mvc application?
What “beforFilter()”,“beforeRender” and “afterFilter” functions do in Controller?
Can we free memory explicitly without waiting for garbage collector to free the memory in .net compact framework?
what is mean by type-safe? Please answer me. Advance thanks.
What's an interface
What are Non Action methods in ASP.Net MVC?