As .net matures, JIT's capabilities have been improved to be brilliantly lazy. That is, do not create machine code if it is not needed. All in all, this is good.
However, if I try to defrost an application , I may prefer an aggressive JIT position. Is there a way to configure a .net application so that all class methods make up JIT, simply because the class was created?
If so, my favorite object creation template can create an instance of the application's graph object, and I will have everything JIT-ready at the same time. That would be good.
Can this be done?
source share