I am a .net developer who has never touched c++. I don’t want to either 🙂
Unfortunately, I have to work with c++ module in .net 4.0 and I am clueless.
Is there a tool that can generate a .net assembly for a given c++ module?
If not, what are my next steps to successfully call these c++ libraries?
There are many ways:
COM Interop
PInvoke/DllImport
C++/CLI
/clrThis is more advanced because it will most probably require the C++ module to be updated and re-compiled.