共享位置和 GAC 之间有什么区别吗?
.NET 程序集存储在共享位置和 GAC 上时有什么区别?
What is difference when .NET assemblies are stored at shared location and GAC?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
.NET 程序集存储在共享位置和 GAC 上时有什么区别?
What is difference when .NET assemblies are stored at shared location and GAC?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
将程序集放置在共享单个文件夹中与将其放置在 GAC 中之间的区别:
MyLibrary.dll
的 v1.0 和 v2.0)有关 GAC 的更多信息,本文可能会有所帮助:
使用 GAC 可以解决许多问题(包括您甚至不知道自己遇到的问题)。如果您正在考虑尝试将程序集存储在某些全局程序集文件夹(或简称 GAF)中,那么我强烈建议您只使用 GAC,除非您有真正充分的理由不这样做。
Differences between placing assemblies in a shared single folder and placing them in the GAC:
MyLibrary.dll
side-by-side in the GAC)For more information on the GAC this article might be useful:
Using the GAC can solve many problems (including ones that you didn't even know you had). If you are considering attempting to store assemblies in some global assembly folder (or GAF for short), then I strongly recommend that you just use the GAC unless you have a really good reason not to.