|
-
August 21st, 2006, 02:23 AM
#8
Re: Difference between C# and C++ or Java
 Originally Posted by MadHatter
once and for all, I challenge anyone, I mean anyone, to show me the binary machine disassembly code where mscorlib.dll or any other ".net" dll (assembly or dll or exe) maps .net IL instructions into cpu specific instructions at runtime.
I think this is shown here: http://msdn.microsoft.com/msdnmag/is...5/JITCompiler/
In addition, even with NGEN, Jit may still be used, look here: http://msdn2.microsoft.com/en-us/library/6t9t5wcf.aspx , at the section "Native Images and JIT Compilation".
The CLR does JITting on a per-method basis, this means that the entire code not is compiled before the application runs. Just the parts needed are.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|