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 could do this for an exe:
Process.Start("yourProcess");
You could also use the AppDomain object if you want to load a dll into your process and then consume it.
And finally you can use the
Assembly.Load(...)
Each serves its own purpose and I would suggest to read up on all of them on msdn for starters.