从c#调用vb6 dll

前端之家收集整理的这篇文章主要介绍了从c#调用vb6 dll前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我一直试图从C sharp应用程序调用vb6 dll,而不使用注册表.我想在使用它时使用dll的路径.我无法创建vb dll类的对象.请帮忙!我到目前为止编写的代码如下:
Assembly assem = Assembly.LoadFile("dll path");
Type classType = assem.GetType("classname");
MethodInfo method = classType.GetMethod("show"); //My methos is called show
method.Invoke(null,null); // I have to invoke the method using class object,which I am unable to create

解决方法

VB6 DLL是一个COM DLL.通常,您将注册DLL(在注册表中),然后从.NET项目添加对VB6 DLL的引用.

这个MSDN article提供了从.Net应用程序使用无注册表COM的演练.

原文链接:https://www.f2er.com/csharp/244363.html

猜你在找的C#相关文章