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 (*
You can use different methods, one is
Assembly.Load
another is using a DllImport attribute:
[DllImport("mylib.dll)]