I have been reading the book CLR Via C# and in that by using NGen.exe i learnt that i can compile my assemblies to Native Image. This increases the performance. However the native code is customized to my architecture.
When i opened the Native Image Directory
C:\Windows\assembly\NativeImages_v4.0.30319_64\System\d6591361d8701ff6eb6a9df223c24684
I found Native Images for all inbuilt .net framework class libraries.
So my question is Will this Native Images in memory be used directly when our application references one ?
And also does .net framework installer produce the Native images of these class libraries that take full advantage of CPU architecture.
Thanks in advance !!!