I have a C# form application...i created a Dll...now i want to launch that dll using this program. how do i do it?
#include
typedef int (*
I assume you want to use the functionality of the DLL? If so, create a reference to the DLL and consume it in your C# forms application. In other words, create a "user" interface for application logic contained in a DLL. If this does not make sense, you should look up how to add a reference to a project.