如果在同一进程中使用 .NET 1.1 和 .NET 2.0 COM 对象会发生什么情况?
如果进程同时加载 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这取决于首先加载哪个版本,因为(在 .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.