.NET 库是否可以实现二进制兼容性?

发布于 2024-09-18 12:41:13 字数 164 浏览 11 评论 0原文

我有一个在 COM 中可见的 .NET 库,它是从 vb6 应用程序调用的。

如果我添加一些方法并发布新版本(但不删除或更改现有方法的签名),我希望能够将其安装在生产计算机中并使其正常工作。然而,这样的做法似乎行不通;我需要重新编译 vb6 应用程序。

有什么办法可以实现这一点吗?

I have a .NET library visible in COM, and it's called from a vb6 application.

If I add some methods and release a new version (but don't erase or change signatures of existing methods), I would like being able to just install it in the production machine, and have it working. However, it seems that such approach doesn't work; I need to reompile the vb6 application.

Is there any way to achieve this?

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

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

发布评论

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

评论(1

哀由 2024-09-25 12:41:13

您可以显式使用 Guid COM 接口和类上的 属性以及 方法、字段和属性上的 DispId 属性:

[Guid("0E213759-1679-4CD1-8322-566CF76928EF")]
public class SampleClass
{
    [DispId(8)]
    public void MyMethod() {}
}

You can explicitly use the Guid attribute on your COM interfaces and classes and the DispId attribute on your methods, fields and properties:

[Guid("0E213759-1679-4CD1-8322-566CF76928EF")]
public class SampleClass
{
    [DispId(8)]
    public void MyMethod() {}
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文