I have a single-threaded COM DLL
built and written in VisualFoxPro
and I'd like to use the procedures from the dll in a C#
win-forms-application.
Now it ain't a problem to add a reference to the DLL, but if I want to use the DLL like I usually do it by
using System;
etc, the newly referenced DLL won't show up.
Is there a possibility to properly reference or include a VFP-written DLL?
And to call the procedures from it then?
Or do I need to import the DLL from my project, reference it from there and do I need to change something in my VS then?
Sadly my research didn't bring any results, only the reverse way, which doesn't help me.
You cannot use such library as managed code but you can use unmanaged code with nteroperability.
First, read about some interoperability basics, then take a look at some of examples of using FoxPro libraries