如何从.NET使用VB6 DLL?

发布于 2024-10-24 05:03:43 字数 232 浏览 2 评论 0原文

如何使用 .net 中的 VB6 DLL?

该 dll 有一个名为 rfc 的方法,该方法返回一个数组,并具有一个整数向量参数。如何调用这个dll?

请举例说明。

var cls = new MyDllVB6.MyClassInVB6();
/*?Array?*/ = cls.MyFunctionInClass( /*?Vector of integer?*/);

How to consume a VB6 DLL from .net?

The dll has a method called rfc that returns an array, and has a parameter that is a vector of integers. How to make the call to this dll?

Please give examples.

var cls = new MyDllVB6.MyClassInVB6();
/*?Array?*/ = cls.MyFunctionInClass( /*?Vector of integer?*/);

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

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

发布评论

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

评论(2

情绪失控 2024-10-31 05:03:43

VB6 dll 是普通的 COM dll,因此只需将其添加到项目引用中就足够了,.NET COM 互操作将为您完成剩下的工作。

VB6 dlls are normal COM dlls, so just adding it to the project references should suffice, the .NET COM interop will do the rest for you.

世界等同你 2024-10-31 05:03:43
int[] vectorOfIntegers = new int[5];
vectorOfIntegers[0] = 123;
vectorOfIntegers[1] = 456;
.
:
int[] outputArray = cls.MyFunctionInClass(vectorOfIntegers);
int[] vectorOfIntegers = new int[5];
vectorOfIntegers[0] = 123;
vectorOfIntegers[1] = 456;
.
:
int[] outputArray = cls.MyFunctionInClass(vectorOfIntegers);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文