-
Contributing Member
Different objects of a .NET framework?
What are the different objects of a .NET framework?
What is the output of the JIT called? The output is .EXE but is there any specific name for it?
-
Junior Member
Re: Different objects of a .NET framework?
The question about objects is a bit too open-ended for a definite answer or we are using different terminology.
But regarding the output, typically .NET executables or binaries are referred as "Assemblies". However, they are not the output result of the JIT, but a compiler. I would imagine that the output result of the JIT is just machine language opcodes in memory, not anything visible on the hard drive.
-
Junior Member
Re: Different objects of a .NET framework?
What is the output of the JIT called? The output is .EXE but is there any specific name for it?
I think,it is the Native code which is cpu dependent code and get executed under the CLR.
-
Junior Member
Re: Different objects of a .NET framework?
out put of JIT is Native Machine Code
look At the Process
Source Code ---->Compiled---->MSIL ------->CLR---Pass MSIL to JIT----> JIT convert MSIL into Native Machine Code
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