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 (*
The terms launching and DLL are somewhat incompatible concepts. The operating system launches programs which are binaries that have a defined entry point: the main method. DLLs are better viewed as binaries which have multiple entry points in the form of APIs. Launching in this case would require the operating system to pick between these many entry points.
Were you trying to use a particular object from a DLL? If so then try the following
Now you will be able to use the types from the DLL within your project.
MyOtherDLLNamespace.TheType local = ...