I have been trying to call a vb6 dll from a C sharp application, without using the registry. I want to use the path of the dll while using it. I am unable to create an object of the class of the vb dll. Please help! The code I have written so far is as follows:
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
VB6DLLs should bePInvoked, the way you're currently loading them is for.NETDLLs – fardjad Feb 13 at 5:44Assembly.LoadFile. Have you tried to call the function using PInvoke? – Searock Feb 13 at 5:49