如果在同一进程中使用 .NET 1.1 和 .NET 2.0 COM 对象会发生什么情况?

发布于 2024-09-07 17:29:34 字数 104 浏览 1 评论 0原文

如果进程同时加载 .NET 1.1 COM 对象和 .NET 2.0 COM 对象(两者都使用进程内服务器),会发生什么情况?这个配置有什么问题吗?或者将其中一个对象设为进程外服务器会更安全吗?

If a process loads both a .NET 1.1 COM object and a .NET 2.0 COM object, both using an in-process server, what happens? Does anything break with this configuration? Or would it be safer to make one of the objects an out-of-process server?

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

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

发布评论

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

评论(1

ぃ双果 2024-09-14 17:29:34

这取决于首先加载哪个版本,因为(在 .NET 4 之前)您只能将一个版本的运行时加载到进程中。要么 .NET 1.1 对象先加载,然后 .NET 2.0 对象倒下;或者首先加载 .NET 2.0 对象,然后 .NET 1.1 对象有望正常工作。

您可能应该考虑升级 .NET 1.1 对象以在 2.0 上运行。如果不这样做,那么您的应用程序将失败,或者 .NET 1.1 对象将被加载到 2.0 中。

It depends which gets loaded first, because (prior to .NET 4) you can only have one version of the runtime loaded into a process. Either the .NET 1.1 object loads first, and the .NET 2.0 object falls over; or the .NET 2.0 object loads first and the .NET 1.1 object hopefully works.

You should probably consider upgrading the .NET 1.1 object to run on 2.0. If you don't, then either your application will fail, or the .NET 1.1 object will get loaded into 2.0 regardless.

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