C# Programming - .NET Framework - Discussion

Discussion Forum : .NET Framework - General Questions (Q.No. 4)
4.
Which of the following utilities can be used to compile managed assemblies into processor-specific native code?
gacutil
ngen
sn
dumpbin
ildasm
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
16 comments Page 2 of 2.

Shiva said:   1 decade ago
ngen means native image genrator which is used for increasung performance. Its invoke all assemblies to generate native code. Put it in sepharate place to access runtime.

Veeranjaneyulu.p said:   1 decade ago
Thanks for the explation given to me.

But I can tell to the Native Image Geneator (Ngen.exe) is tool that improves the performance of managed applictions

Venkatesh said:   1 decade ago
Any body please explain me where we are using this? while developing the applications.

Prasanjit said:   1 decade ago
Priyanka: Thanx for the explanation you gave above! :)
but can you make it in simple words..what its all about?

Priyanka said:   1 decade ago
The Native Image Generator (Ngen.exe) is a tool that improves the performance of managed applications. Ngen.exe creates native images, which are files containing compiled processor-specific machine code, and installs them into the native image cache on the local computer. The runtime can use native images from the cache instead using the just-in-time (JIT) compiler to compile the original assembly.

Praveen Saini said:   1 decade ago
Please tell me about the description of this answer.


Post your comments here:

Your comments will be displayed after verification.