Build native c++ for use as .net library
I have the c++ source code of functionality which is appealing to me. What effort/work is involved/required in order to either reference this from a .net application or build this code as a .net assembly (preferably c#)? This is my first attempt at porting code, so please breakdown your answer for me step by step. There are several ways of doing it. PInvoke Create C++/CLI wrapper around your C++ native code (make static library out of C++ native code) and C++/CLI generated assembly can be easily utilized in .net application. COM, i.e using interop (which is difficult among all the options) In