DOTNET Performance Tuning Tips
.NET Performance Tuning Tips 1) Pre-complier NGEN install myapp.exe 2) Use Value types (no heap memory) 3) Rewrite (overload) methods so that they don’t use boxing or refection 4) Use Generic Collections to avoid boxing/unboxing costs 5) Use fastest JIP compiler, RyuJit > JIT64 , use RyuJit for faster compilation time 6) MPGO (Managed Profile …