i have project that is on c++. it runs fine. i want to use it in my C# application as a dll. i have created its dll and but firing exception of "interprocess communication". Any idea to resolve them.
is this a doable task that creating dll of an exe project and using it in C# application?
Please help...
The other possibilites involve COM (convert you DLL into a in-process COM server and use the .NET-COM interop mechanism) and C++/CLI (create a C++/CLI DLL which implements a .NET API to expose you native C++ functionality)