Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


What is MSIL, IL, CTS and, CLR



What is MSIL, IL, CTS and, CLR..

Answer / kirti

MSIL: (Microsoft intermediate language)

When compiling to managed code, the compiler translates your source code into Microsoft intermediate language (MSIL), which is a CPU-independent set of instructions that can be efficiently converted to native code. MSIL includes instructions for loading, storing, initializing, and calling methods on objects, as well as instructions for arithmetic and logical operations, control flow, direct memory access, exception handling, and other operations. Before code can be executed, MSIL must be converted to CPU-specific code, usually by a just-in-time (JIT) compiler. Because the common language runtime supplies one or more JIT compilers for each computer architecture it supports, the same set of MSIL can be JIT-compiled and executed on any supported architecture.

When a compiler produces MSIL, it also produces metadata. Metadata describes the types in your code, including the definition of

each type, the signatures of each type's members, the members that your code references, and other data that the runtime uses at

execution time. The MSIL and metadata are contained in a portable executable (PE) file that is based on and extends the published

Microsoft PE and Common Object File Format (COFF) used historically for executable content. This file format, which accommodates

MSIL or native code as well as metadata, enables the operating system to recognize common language runtime images. The

presence of metadata in the file along with the MSIL enables your code to describe itself, which means that there is no need for type libraries or Interface Definition Language (IDL). The runtime locates and extracts the metadata from the file as needed during

execution.

IL: (Intermediate Language)

A language used as the output of a number of compilers and as the input to a just-in-time (JIT) compiler. The common language

runtime includes a JIT compiler for converting MSIL to native code.

CTS: (Common Type System)

The specification that determines how the common language runtime defines, uses, and manages types

CLR: (Common Language Runtime)

The engine at the core of managed code execution. The runtime supplies managed code with services such as cross-language

integration, code access security, object lifetime management, and debugging and profiling support.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Dot Net Framework Interview Questions

Can you explain renderbody and renderpage in mvc?

0 Answers  


How .net assemblies are registred as private and shared assembly ?

2 Answers   Infosys, MMTS,


What platforms does the .NET Framework run on?

1 Answers  


Where are the value-type variables allocated in the computer RAM ?

1 Answers  


How we can call a JavaScript function on the change of a Dropdown List in ASP.Net MVC?

0 Answers  


Can you explain renderbody and renderpage in asp.net mvc?

0 Answers  


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 are the components required to create a route in ASP.Net MVC?

0 Answers  


Is the lack of deterministic destruction in .NET a problem

1 Answers  


What is oauth in web api?

0 Answers  


How you can implement custom validation in asp.net MVC?

0 Answers  


What is the .net framework and how does it work?

0 Answers  


Categories