Tagged Questions

3
votes
1answer
177 views

How to measure the effect of correctly rebasing .NET assemblies before NGen?

Our application has a lot of .NET assemblies, which up until now, has not been deployed with NGen-scripts, so they are always JITted at runtime. Since our application is typically deployed to a ...
2
votes
1answer
517 views

.NET assembly cache / ngen / jit image warm-up and cool-down behavior

I have an Input Method (IME) program built with C#.NET 2.0 DLL through C++/CLI. Since an IME is always attaching to another application, the C#.NET DLL seems not able to avoid image address rebasing. ...
1
vote
2answers
102 views

Dll base address

I've got a small test solution with one exe and three Dlls, the exe calling the three Dlls once each. I've set the Build->Advanced->DLL Base Address setting to 0x41000000, 0x42000000 and 0x43000000 ...