How to use a dll made in vb 6 to c#.net 3.5 application ? Although we have interop feature but it requires to map all the functions of the dll. Is there any other way around that is quick and reliable. Further is there any tool that might convert this vb 6 dll to .net assembly ? Thanks in advance.
Share
In addition to pinvoke interop (calling functions by name from a dll) .net has excellent COM interop also and it should be relatively easy to expose the vb 6 dll functionality as a COM component.