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 (*
In your C# application, add a reference to the assembly you created (the DLL). You can do this through the solution explorer window - right click on references, and say "Add Reference..." and choose your DLL.
At that point, you can add "using YourDllNamespace;
" at the top of your C# form's class, and use the types defined within the DLL as needed.