What is the meaning of Default/NativeImage in fuslogvw?

好久不见. 提交于 2019-12-12 12:19:34

问题


I occasionally use fuslogvw to track down problems loading assemblies. After all my time of using it, it seems that the folder 'NativeImage' has results for loading native images of my dlls. When the native image is not found (usually its not), I think it then looks for a .net assembly. The 'default' folder is what I normally care about, because it has logs for all assembly bindings, which is where my problem typically lies.

Can anyone explain the real difference here?


回答1:


The native images are the JIT-compiled versions of the DLLs. If they are not present, the non-JIT-ted versions are located and used.

This article explains native images in more detail and how to use them with fuslogvw.



来源:https://stackoverflow.com/questions/944633/what-is-the-meaning-of-default-nativeimage-in-fuslogvw

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!