By tag: NGen
0
kicks
NGEN: Improve Winforms Apps' Startup Times in a Few Steps (Code)
Some free code that you can use to enhance a Windows Installer to precompile your .NET app's code to a native image. Usually, a performance improvement between 2x and 4x can be seen when using NGEN. This post provides an easy way to invoke NGEN.
0
kicks
To NGen or Not to NGen?
One of the topics we often get questions on is about when it makes sense to invest the extra effort to pre-compile assemblies via NGen instead of simply relying on the JIT compiler to generate native code on the fly at application runtime. I thought I would try to answer that question in our first &...