Some .NET Gyan....
Reply
![]() |
|
|
From:
Jignesh Desai
|
Just-In-Time compiler The CLR never executes
Common Intermediate Language (CIL) directly. Instead, the Just-In-Time (JIT)
compiler translates CIL into optimized x86 native instructions. That�s why
using managed code lets your software run in different environments safely and
efficiently. In addition, using machine language lets you take full advantage of
the features of the processor the application is running on. For example, when
the JIT encounters an Intel processor, the code produced takes advantage of
hyper-threading technology.
Another advantage of the JIT is improved
performance. The JIT learns when the code does multiple iterations. The runtime
is designed to be able to retune the JIT compiled code as your program runs.
Versioning essentially eliminates �DLL hell.� When
you define an assembly as strongly named, the .NET executable will be executed
with the same DLL with which it was built. This means that you can have
side-by-side versions of a DLL, However, when an application calls unmanaged
DLLs, you can end up back in �DLL hell.�
|
|
View other groups in this category.
![]() |
To stop getting this e-mail, or change how often it arrives, go to your E-mail Settings.
Need help? If you've forgotten your password, please go to Passport Member Services.
For other questions or feedback, go to our Contact Us page.
If you do not want to receive future e-mail from this MSN group, or if you received this message by mistake, please click the "Remove" link below. On the pre-addressed e-mail message that opens, simply click "Send". Your e-mail address will be deleted from this group's mailing list.
Remove my e-mail address from trivandrumusergroup.
|
|