如何从.NET使用VB6 DLL?
如何使用 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
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.