共享位置和 GAC 之间有什么区别吗?

发布于 2024-09-16 01:06:45 字数 36 浏览 3 评论 0原文

.NET 程序集存储在共享位置和 GAC 上时有什么区别?

What is difference when .NET assemblies are stored at shared location and GAC?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

流年已逝 2024-09-23 01:06:45

将程序集放置在共享单个文件夹中与将其放置在 GAC 中之间的区别:

  • GAC 中的程序集位置必须是强类型的
  • 。加载程序集时,CLR 通常会先检入 GAC 并加载程序集,然后再考虑其他位置。
  • 您可以在 GAC 中放置同一程序集的多个版本(例如,您可以在 GAC 中并排放置程序集 MyLibrary.dll 的 v1.0 和 v2.0)
  • CLR 知道如果您没有先告诉它该文件夹的位置,它就不会知道要签入您的共享单个文件夹。

有关 GAC 的更多信息,本文可能会有所帮助:

使用 GAC 可以解决许多问题(包括您甚至不知道自己遇到的问题)。如果您正在考虑尝试将程序集存储在某些全局程序集文件夹(或简称 GAF)中,那么我强烈建议您只使用 GAC,除非您有真正充分的理由不这样做。

Differences between placing assemblies in a shared single folder and placing them in the GAC:

  • Assemblies places in the GAC must be strongly typed
  • When loading assemblies the CLR will normally check in the GAC and load assemblies first, before considering other locations.
  • You can place multiple versions of the same assembly in the GAC (e.g. you can have both v1.0 and v2.0 of an assembly MyLibrary.dll side-by-side in the GAC)
  • The CLR knows the check in the GAC, whereas it won't know to check in your shared single folder without you first telling it where that folder is.

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文