Answer Posted / jasbir singh thakur
Common Language Runtime (CLR)
working of CLR:-
When the .NET program is compiled, the output of the
compiler is not an executable file but a file that contains
a special type of code called the Microsoft Intermediate
Language (MSIL), which is a low-level set of instructions
understood by the common language run time. This MSIL
defines a set of portable instructions that are independent
of any specific CPU. It's the job of the CLR to translate
this Intermediate code into a executable code when the
program is executed making the program to run in any
environment for which the CLR is implemented. And that's
how the .NET Framework achieves Portability. This MSIL is
turned into executable code using a JIT (Just In Time)
complier. The process goes like this, when .NET programs
are executed, the CLR activates the JIT complier. The JIT
complier converts MSIL into native code on a demand basis
as each part of the program is needed. Thus the program
executes as a native code even though it is compiled into
MSIL making the program to run as fast as it would if it is
compiled to native code but achieves the portability
benefits of MSIL.
| Is This Answer Correct ? | 20 Yes | 5 No |
Post New Answer View All Answers
Why do we use byref keyword in vb.net?
Explain about the ruby interface generator?
Name the two main parts of .net?
What is the feature anonymous type?
What is portable executable?
hello thank you for replying to my question regarding adding barcode fonts in vb.net project. I have downloaded a free font and added in my vb.net project but now i dont know how to use that i need to generate barcodes can any body help me how to use those fonts these are font3of9 .i need a small code to use these fonts to generate barcode thank u!
What is an assembly and its use?
Why do you need Lock in Visual Basic?
What is the size of .net object?
How vb implements the disconnected architecture as like vb.net?
What is code security?
Which class allows an element to be accessed using unique key?
What are the two main parts of .net?
List the types of authentication?
What is branching logic control in VB.NET?