Originally Posted By: mlord
The fairly obvious best method would be to only compile the app the first time it is run, or at installation time only, and keep the compiled copy around thereafter.


.NET (on Windows) allows you to pick one. By default, code is JITted, but the installer can opt to compile it (via ngen). Seems like the right answer.
_________________________
-- roger