Difficulty: Easy
Correct Answer: ngen
Explanation:
Introduction / Context:
Some .NET tools optimize deployment and performance by preparing native images before runtime.
Given Data / Assumptions:
Concept / Approach:
Native Image Generator (ngen.exe) produces machine-specific native images that the CLR can load instead of JIT-compiling IL at startup.
Step-by-Step Solution:
Verification / Alternative check:
Documentation shows ngen.exe as the AOT compiler for .NET Framework.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing IL disassembly with native image generation.
Final Answer:
ngen
Discussion & Comments