As we have understood you want to use precompiled executable in CLR. In this case you’re going to mix up unmanaged code with managed one. The right way to do it is to use DLLImport. So you’ll have to compile your c++ code into dll. See more here.
Comments
Leave a comment